diff options
author | Marcus Boerger <helly@php.net> | 2003-08-28 20:35:54 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-08-28 20:35:54 +0000 |
commit | 8d3620aea8beb6697b47173500a31f7bf3b6bc21 (patch) | |
tree | 5dd317dc833d51d11ea471f3a96d0a7bceab2900 /Zend/zend_builtin_functions.h | |
parent | 9d9727aac55b3f395402b57b49907d60abef59fa (diff) | |
download | php-git-8d3620aea8beb6697b47173500a31f7bf3b6bc21.tar.gz |
- Split debug_backtrace() into lowlevel c function and php function wrapper
- Add trace property to default method based on new zend_fetch_debug_backtrace
# Unforunatley the handler for uncaught exception can't show this backtrace
# simply because there is currently no way to do it. If i can think of a
# solution i'll add it. Until them i am open to any ideas/help.
Diffstat (limited to 'Zend/zend_builtin_functions.h')
-rw-r--r-- | Zend/zend_builtin_functions.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_builtin_functions.h b/Zend/zend_builtin_functions.h index 07588aeee7..3367ff3e66 100644 --- a/Zend/zend_builtin_functions.h +++ b/Zend/zend_builtin_functions.h @@ -23,6 +23,7 @@ #define ZEND_BUILTIN_FUNCTIONS_H int zend_startup_builtin_functions(TSRMLS_D); +ZEND_API void zend_fetch_debug_backtrace(zval *return_value TSRMLS_DC); #endif /* ZEND_BUILTIN_FUNCTIONS_H */ |