1 /* globals.c 2 * 3 * Copyright (C) 1995, 1999, 2000, 2001, 2008 by Larry Wall and others 4 * 5 * You may distribute under the terms of either the GNU General Public 6 * License or the Artistic License, as specified in the README file. 7 * 8 */ 9 10 /* 11 * 'For the rest, they shall represent the other Free Peoples of the World: 12 * Elves, Dwarves, and Men.' --Elrond 13 * 14 * [p.275 of _The Lord of the Rings_, II/iii: "The Ring Goes South"] 15 */ 16 17 /* This file exists to #include "perl.h" _ONCE_ with 18 * PERL_IN_GLOBALS_C defined. That causes various global variables 19 * in perl.h and other files it includes to be _defined_ (and initialized) 20 * rather than just declared. 21 */ 22 23 #include "INTERN.h" 24 #define PERL_IN_GLOBALS_C 25 #include "perl.h" 26 27 /* regcomp.h * isn't #included in perl.h, as its only included within a 28 * few specific files such as regcomp.c, regexec.c. So include it 29 * explicitly to process any data declarations within it. 30 */ 31 #include "regcomp.h" 32 33 /* We need somewhere to declare this. This file seems a good place. 34 * This is not a regular "global" in that we don't know whether it needs to 35 * exist until we include threads.h, and we don't want it as part of any 36 * global struct (if that or something similar is re-introduced. */ 37 38 #if defined(USE_ITHREADS) && defined(PERL_THREAD_LOCAL) 39 PERL_THREAD_LOCAL void *PL_current_context; 40 #endif 41 42 /* 43 * ex: set ts=8 sts=4 sw=4 et: 44 */ 45