diff options
author | Sebastian Bergmann <sebastian@php.net> | 2011-04-09 09:52:24 +0000 |
---|---|---|
committer | Sebastian Bergmann <sebastian@php.net> | 2011-04-09 09:52:24 +0000 |
commit | 6f3148db81d15cd024933ce235a56e72b9233acb (patch) | |
tree | 16da62621968cf48909e43affb6e717f469a5e05 /Zend/zend_builtin_functions.h | |
parent | efcb9a71cdb3efde06dd3b347e64b21e4418c9db (diff) | |
download | php-git-6f3148db81d15cd024933ce235a56e72b9233acb.tar.gz |
Add optional argument to debug_backtrace() and debug_print_backtrace() to limit the amount of stack frames returned.
Diffstat (limited to 'Zend/zend_builtin_functions.h')
-rw-r--r-- | Zend/zend_builtin_functions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_builtin_functions.h b/Zend/zend_builtin_functions.h index cb76996547..32c33ba158 100644 --- a/Zend/zend_builtin_functions.h +++ b/Zend/zend_builtin_functions.h @@ -25,7 +25,7 @@ int zend_startup_builtin_functions(TSRMLS_D); BEGIN_EXTERN_C() -ZEND_API void zend_fetch_debug_backtrace(zval *return_value, int skip_last, int options TSRMLS_DC); +ZEND_API void zend_fetch_debug_backtrace(zval *return_value, int skip_last, int options, int limit TSRMLS_DC); END_EXTERN_C() #endif /* ZEND_BUILTIN_FUNCTIONS_H */ |