From: Gurusamy Sarathy Date: Tue, 19 Oct 1999 02:18:54 +0000 (+0000) Subject: perl_mutex n/a if !USE_THREADS X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=70df91df9052c5a7ec17f2851bfb85a77db45a94;p=p5sagit%2Fp5-mst-13.2.git perl_mutex n/a if !USE_THREADS p4raw-id: //depot/perl@4409 --- diff --git a/perlvars.h b/perlvars.h index ecb450e..85ff751 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