diff options
author | Dmitry Stogov <dmitry@zend.com> | 2018-06-13 11:28:24 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2018-06-13 11:28:24 +0300 |
commit | e788e8261ea8eb1b363377f1b185ac6b338607ed (patch) | |
tree | 1c233438ef025bdada55a154d45dbd5276fec2ea /Zend/zend_builtin_functions.c | |
parent | 2afc83732c1eb416acabace042eb0f5384bea721 (diff) | |
download | php-git-e788e8261ea8eb1b363377f1b185ac6b338607ed.tar.gz |
Removed "gc_" prefix.
Diffstat (limited to 'Zend/zend_builtin_functions.c')
-rw-r--r-- | Zend/zend_builtin_functions.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c index feee2ddf1d..c03eea82b5 100644 --- a/Zend/zend_builtin_functions.c +++ b/Zend/zend_builtin_functions.c @@ -398,9 +398,9 @@ ZEND_FUNCTION(gc_status) array_init_size(return_value, 3); - add_assoc_long_ex(return_value, "gc_runs", sizeof("gc_runs")-1, (long)status.gc_runs); + add_assoc_long_ex(return_value, "runs", sizeof("runs")-1, (long)status.runs); add_assoc_long_ex(return_value, "collected", sizeof("collected")-1, (long)status.collected); - add_assoc_long_ex(return_value, "gc_threshold", sizeof("gc_threshold")-1, (long)status.gc_threshold); + add_assoc_long_ex(return_value, "threshold", sizeof("threshold")-1, (long)status.threshold); } /* {{{ proto int func_num_args(void) |