summaryrefslogtreecommitdiff
path: root/Zend/zend_globals.h
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2001-08-03 07:06:05 +0000
committerZeev Suraski <zeev@php.net>2001-08-03 07:06:05 +0000
commit66d9314b60017ac8579fbd883c6ebe505eb1d561 (patch)
tree0f8af5d4ff94b4152b54b3ac36681285c2f5bfd0 /Zend/zend_globals.h
parentded764461b42b505b79308f80ed8897b8899e4f8 (diff)
downloadphp-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.h4
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];