diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-06-23 17:44:23 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-06-29 00:20:58 -0700 |
commit | 01995fcc964779c368050e699e454ea876ef63f6 (patch) | |
tree | f3fc80719d5bfc8b7194bdb933fc6574ec5a0337 | |
parent | 5cd2f99d38a9a2d64301a8f3e827e4c37a76d1e2 (diff) | |
download | perl-01995fcc964779c368050e699e454ea876ef63f6.tar.gz |
PERL_IMPLICIT_SYS can use the new slab allocator
-rw-r--r-- | makedef.pl | 4 | ||||
-rw-r--r-- | perl.h | 9 |
2 files changed, 0 insertions, 13 deletions
diff --git a/makedef.pl b/makedef.pl index ff26b741cd..6a870f8a42 100644 --- a/makedef.pl +++ b/makedef.pl @@ -111,10 +111,6 @@ close(CFG); # perl.h logic duplication begins -if ($define{PERL_IMPLICIT_SYS}) { - $define{PL_OP_SLAB_ALLOC} = 1; -} - if ($define{USE_ITHREADS}) { if (!$define{MULTIPLICITY}) { $define{MULTIPLICITY} = 1; @@ -48,15 +48,6 @@ * repeated in makedef.pl, so be certain to update * both places when editing. */ -#ifdef PERL_IMPLICIT_SYS -/* PERL_IMPLICIT_SYS implies PerlMemShared != PerlMem - so use slab allocator to avoid lots of MUTEX overhead - */ -# ifndef PL_OP_SLAB_ALLOC -# define PL_OP_SLAB_ALLOC -# endif -#endif - #ifdef USE_ITHREADS # if !defined(MULTIPLICITY) # define MULTIPLICITY |