diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 1998-07-19 18:16:20 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 1998-07-19 18:16:20 +0000 |
commit | 51dc0457edfc865734c2af05213330135014b0ab (patch) | |
tree | a9cfdc3d2a64d9fed584de1653e8b4ead7571765 /perl.h | |
parent | 4a33f861d7306c2a47424e9dc3b9646bcaddec90 (diff) | |
download | perl-51dc0457edfc865734c2af05213330135014b0ab.tar.gz |
Drat! - threaded perl-malloc has mutex that needs PL_
p4raw-id: //depot/ansiperl@1570
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1573,8 +1573,8 @@ typedef Sighandler_t Sigsave_t; #endif #ifdef MYMALLOC -# define MALLOC_INIT MUTEX_INIT(&malloc_mutex) -# define MALLOC_TERM MUTEX_DESTROY(&malloc_mutex) +# define MALLOC_INIT MUTEX_INIT(&PL_malloc_mutex) +# define MALLOC_TERM MUTEX_DESTROY(&PL_malloc_mutex) #else # define MALLOC_INIT # define MALLOC_TERM |