diff options
author | Zeev Suraski <zeev@php.net> | 2001-08-03 07:06:05 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-08-03 07:06:05 +0000 |
commit | 66d9314b60017ac8579fbd883c6ebe505eb1d561 (patch) | |
tree | 0f8af5d4ff94b4152b54b3ac36681285c2f5bfd0 /Zend/zend_globals.h | |
parent | ded764461b42b505b79308f80ed8897b8899e4f8 (diff) | |
download | php-git-66d9314b60017ac8579fbd883c6ebe505eb1d561.tar.gz |
Implement fast memory allocation and reduced fragmentation under Windows.
Diffstat (limited to 'Zend/zend_globals.h')
-rw-r--r-- | Zend/zend_globals.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Zend/zend_globals.h b/Zend/zend_globals.h index 7b55b2ae2a..964f61ec2b 100644 --- a/Zend/zend_globals.h +++ b/Zend/zend_globals.h @@ -208,6 +208,10 @@ struct _zend_alloc_globals { unsigned int cache_count[MAX_CACHED_MEMORY]; void *fast_cache_list_head[MAX_FAST_CACHE_TYPES]; +#ifdef ZEND_WIN32 + HANDLE memory_heap; +#endif + #if ZEND_DEBUG /* for performance tuning */ int cache_stats[MAX_CACHED_MEMORY][2]; |