From: Steve Hay Date: Tue, 9 Sep 2003 09:49:07 +0000 (+0100) Subject: Re: maint @ 21116 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=75d0c946f01ada3e3b50d0e861dacec3faddf7d5;p=p5sagit%2Fp5-mst-13.2.git Re: maint @ 21116 Message-ID: <3F5D9403.3040004@uk.radan.com> p4raw-id: //depot/perl@21132 --- diff --git a/makedef.pl b/makedef.pl index cf681a7..4ea12b3 100644 --- a/makedef.pl +++ b/makedef.pl @@ -100,9 +100,7 @@ close(CFG); # perl.h logic duplication begins -if ($define{PERL_IMPLICIT_SYS}) { - $define{PL_OP_SLAB_ALLOC} = 1; -} +$define{PL_OP_SLAB_ALLOC} = 1; if ($define{USE_ITHREADS}) { if (!$define{MULTIPLICITY}) { diff --git a/perl.h b/perl.h index 01458d9..39a5a42 100644 --- a/perl.h +++ b/perl.h @@ -44,13 +44,8 @@ * 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 +#ifndef PL_OP_SLAB_ALLOC +# define PL_OP_SLAB_ALLOC #endif #ifdef USE_ITHREADS