diff options
author | Dmitry Stogov <dmitry@zend.com> | 2015-08-04 18:21:05 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2015-08-04 18:21:05 +0300 |
commit | 668ecaa606b3203311b3329fcbd49b59f715e1e4 (patch) | |
tree | 03700463bc46c639e07a60e1741ae3a434a11b31 /Zend/zend_alloc.h | |
parent | ed8d16b173556f8d95c6261dba65d653f64d3920 (diff) | |
download | php-git-668ecaa606b3203311b3329fcbd49b59f715e1e4.tar.gz |
Fixed bug #70098 (Real memory usage doesn't decrease)
Diffstat (limited to 'Zend/zend_alloc.h')
-rw-r--r-- | Zend/zend_alloc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Zend/zend_alloc.h b/Zend/zend_alloc.h index eebddca0c9..519a59d254 100644 --- a/Zend/zend_alloc.h +++ b/Zend/zend_alloc.h @@ -282,6 +282,8 @@ ZEND_API size_t ZEND_FASTCALL _zend_mm_block_size(zend_mm_heap *heap, void *p ZE ZEND_API zend_mm_heap *zend_mm_set_heap(zend_mm_heap *new_heap); ZEND_API zend_mm_heap *zend_mm_get_heap(void); +ZEND_API size_t zend_mm_gc(zend_mm_heap *heap); + ZEND_API int zend_mm_is_custom_heap(zend_mm_heap *new_heap); ZEND_API void zend_mm_set_custom_handlers(zend_mm_heap *heap, void* (*_malloc)(size_t), |