diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-06-10 09:30:35 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-06-10 09:30:35 +0000 |
commit | 0672f40ebb7f0cdf6045545c3680ba955a0cd920 (patch) | |
tree | e46ab1ba356a4f330fdbebda5c993eaf3c39588c /perl.h | |
parent | 66918de8dd631444b797319b2251d78ebc0b12ef (diff) | |
download | perl-0672f40ebb7f0cdf6045545c3680ba955a0cd920.tar.gz |
most globals are now interpreter local; locale initialization
was too early, defer it until interpreter is allocated and
initialized; multiple interpreters should now be
concurrency-safe (untested)
p4raw-id: //depot/perl@3527
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1756,7 +1756,7 @@ Gid_t getegid (void); #define DEBUG_o(a) if (PL_debug & 16) a #define DEBUG_c(a) if (PL_debug & 32) a #define DEBUG_P(a) if (PL_debug & 64) a -# if defined(PERL_OBJECT) || defined(PERL_IMPLICIT_CONTEXT) +# if defined(PERL_OBJECT) # define DEBUG_m(a) if (PL_debug & 128) a # else # define DEBUG_m(a) if (PL_curinterp && PL_debug & 128) a |