diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-10-19 02:18:54 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-10-19 02:18:54 +0000 |
commit | 70df91df9052c5a7ec17f2851bfb85a77db45a94 (patch) | |
tree | 317f152e405876131d4e4ac2e7b9f5d00253a857 | |
parent | c7c04614297eaf861353db8b10652f71378803e4 (diff) | |
download | perl-70df91df9052c5a7ec17f2851bfb85a77db45a94.tar.gz |
perl_mutex n/a if !USE_THREADS
p4raw-id: //depot/perl@4409
-rw-r--r-- | perlvars.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perlvars.h b/perlvars.h index ecb450e426..85ff7515bd 100644 --- a/perlvars.h +++ b/perlvars.h @@ -31,6 +31,6 @@ PERLVARIC(Gpatleave, char *, "\\.^$@dDwWsSbB+*?|()-nrtfeaxc0123456789[{]}") /* XXX does anyone even use this? */ PERLVARI(Gdo_undump, bool, FALSE) /* -u or dump seen? */ -#ifdef MYMALLOC +#if defined(MYMALLOC) && defined(USE_THREADS) PERLVAR(Gmalloc_mutex, perl_mutex) /* Mutex for malloc */ #endif |