diff options
author | Ilya Zakharevich <ilya@math.berkeley.edu> | 2003-07-15 00:46:58 -0700 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-07-24 07:02:31 +0000 |
commit | 6af660ee01c05048b7704273e88e9249deb8202f (patch) | |
tree | 925b5135325dc32711b43fce548e19d23a7091f4 /malloc_ctl.h | |
parent | 830b38bd9aba3b182891b9a2d5cae8a220294dee (diff) | |
download | perl-6af660ee01c05048b7704273e88e9249deb8202f.tar.gz |
malloc cleanup
Message-ID: <20030715144657.GA21313@math.berkeley.edu>
p4raw-id: //depot/perl@20184
Diffstat (limited to 'malloc_ctl.h')
-rw-r--r-- | malloc_ctl.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/malloc_ctl.h b/malloc_ctl.h index 2bce0c113c..7a6aed0db7 100644 --- a/malloc_ctl.h +++ b/malloc_ctl.h @@ -25,6 +25,7 @@ END_EXTERN_C #ifndef NO_MALLOC_DYNAMIC_CFG +/* IV configuration data */ enum { MallocCfg_FIRST_SBRK, MallocCfg_MIN_SBRK, @@ -47,8 +48,15 @@ enum { MallocCfg_last }; +/* char* configuration data */ +enum { + MallocCfgP_emergency_buffer, + MallocCfgP_emergency_buffer_prepared, + MallocCfgP_last +}; START_EXTERN_C extern IV *MallocCfg_ptr; +extern char **MallocCfgP_ptr; END_EXTERN_C #endif |