summaryrefslogtreecommitdiff
path: root/Zend/zend_gc.h
diff options
context:
space:
mode:
authorXinchen Hui <laruence@gmail.com>2018-06-13 16:41:51 +0800
committerXinchen Hui <laruence@gmail.com>2018-06-13 16:41:51 +0800
commit9465ec4673ccce985e093bea0786ff5c6d0e07ac (patch)
tree68122242738636b46fd2875cd8f73c7ebdea151e /Zend/zend_gc.h
parente788e8261ea8eb1b363377f1b185ac6b338607ed (diff)
downloadphp-git-9465ec4673ccce985e093bea0786ff5c6d0e07ac.tar.gz
Added num_roots to gc_status
Diffstat (limited to 'Zend/zend_gc.h')
-rw-r--r--Zend/zend_gc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_gc.h b/Zend/zend_gc.h
index 57cdce4a27..73111bef19 100644
--- a/Zend/zend_gc.h
+++ b/Zend/zend_gc.h
@@ -28,6 +28,7 @@ typedef struct _zend_gc_status {
uint32_t runs;
uint32_t collected;
uint32_t threshold;
+ uint32_t num_roots;
} zend_gc_status;
ZEND_API extern int (*gc_collect_cycles)(void);