diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-10-20 10:20:18 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-10-20 10:20:18 +0000 |
commit | 6cb8cb214e85c7d67c2acca4f12551f90bf4908e (patch) | |
tree | 28b67c2d45d05411610e8e4a6d6322fdc3d88379 /perlvars.h | |
parent | 4978b1831a24ff36fc8bea075526005cdf40e132 (diff) | |
download | perl-6cb8cb214e85c7d67c2acca4f12551f90bf4908e.tar.gz |
More leak fixes, by Jarkko
p4raw-id: //depot/perl@29060
Diffstat (limited to 'perlvars.h')
-rw-r--r-- | perlvars.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/perlvars.h b/perlvars.h index b4f3e51319..c8706f53ad 100644 --- a/perlvars.h +++ b/perlvars.h @@ -138,3 +138,7 @@ PERLVARI(Gmy_cxt_index, int, 0) #if defined(USE_ITHREADS) PERLVAR(Ghints_mutex, perl_mutex) /* Mutex for refcounted he refcounting */ #endif + +#if defined(USE_THREADS) /* Yes, 5.005 threads - should be removed. */ +PERLVAR(Gperlio_mutex, perl_mutex) /* Mutex for perlio fd refcounts */ +#endif |