diff options
author | Stephen McCamant <smcc@mit.edu> | 1998-03-13 16:28:19 -0600 |
---|---|---|
committer | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1998-03-16 16:02:50 +0000 |
commit | 2ce36478e58aef6258082c58568c0f469f8eb69c (patch) | |
tree | 8b2fd2da30cf61ed9b9e9edf150bc920ff16087a /malloc.c | |
parent | 88f6dadfa85904befed3058706d299f3599d0462 (diff) | |
download | perl-2ce36478e58aef6258082c58568c0f469f8eb69c.tar.gz |
STRESS_REALLOC
p4raw-id: //depot/perl@820
Diffstat (limited to 'malloc.c')
-rw-r--r-- | malloc.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -618,6 +618,9 @@ realloc(void *mp, size_t nbytes) * FIRST_BIG_TWO_POT, but the new one is near the lower end. */ if (was_alloced && +#ifdef STRESS_REALLOC + 0 && /* always do it the hard way */ +#endif nbytes <= onb && (nbytes > ( (onb >> 1) - M_OVERHEAD ) #ifdef TWO_POT_OPTIMIZE || (i == (FIRST_BIG_TWO_POT - 3) |