summaryrefslogtreecommitdiff
path: root/plan9
diff options
context:
space:
mode:
authorIlya Zakharevich <ilya@math.berkeley.edu>1997-11-25 15:59:16 +0000
committerMalcolm Beattie <mbeattie@sable.ox.ac.uk>1997-11-25 15:59:16 +0000
commit18f739eeef869ffadc3775821df62e4b90bf75b0 (patch)
tree53cd79aed73f55f7b2876741c2fb27786134a75a /plan9
parentd0066dc7de72349a42c2c47e1fc66da2ba66542a (diff)
downloadperl-18f739eeef869ffadc3775821df62e4b90bf75b0.tar.gz
Move malloc_mutex initialisation/destruction:
Subject: patch to 5.004_54 for pthreads with Perl's malloc p4raw-id: //depot/perl@299
Diffstat (limited to 'plan9')
-rw-r--r--plan9/plan9ish.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/plan9/plan9ish.h b/plan9/plan9ish.h
index 3a5ad5eb1a..9c8bd5049f 100644
--- a/plan9/plan9ish.h
+++ b/plan9/plan9ish.h
@@ -98,9 +98,9 @@
#define ABORT() kill(getpid(),SIGABRT);
#define BIT_BUCKET "/dev/null"
-#define PERL_SYS_INIT(c,v)
+#define PERL_SYS_INIT(c,v) MALLOC_INIT
#define dXSUB_SYS
-#define PERL_SYS_TERM()
+#define PERL_SYS_TERM() MALLOC_TERM
/*
* fwrite1() should be a routine with the same calling sequence as fwrite(),