diff options
author | Bob Weinand <bobwei9@hotmail.com> | 2014-10-28 17:20:21 +0100 |
---|---|---|
committer | Bob Weinand <bobwei9@hotmail.com> | 2014-10-28 17:25:48 +0100 |
commit | 297baa0c18d8d04de7a683a51b9f069c84a855f3 (patch) | |
tree | dddd07a8d5077a638159e9f408ddd5627f7e5d68 /sapi/phpdbg/phpdbg_bp.h | |
parent | fd8a70b1ee8889234be5e9dded768852f26c9c5e (diff) | |
download | php-git-297baa0c18d8d04de7a683a51b9f069c84a855f3.tar.gz |
Remove the ugly hack via a temp file to store breakpoints
Diffstat (limited to 'sapi/phpdbg/phpdbg_bp.h')
-rw-r--r-- | sapi/phpdbg/phpdbg_bp.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg_bp.h b/sapi/phpdbg/phpdbg_bp.h index eca595321b..63a9961d2a 100644 --- a/sapi/phpdbg/phpdbg_bp.h +++ b/sapi/phpdbg/phpdbg_bp.h @@ -157,6 +157,7 @@ PHPDBG_API phpdbg_breakbase_t *phpdbg_find_breakbase(zend_ulong id TSRMLS_DC); PHPDBG_API phpdbg_breakbase_t *phpdbg_find_breakbase_ex(zend_ulong id, HashTable ***table, HashPosition *position TSRMLS_DC); /* }}} */ /* {{{ Breakpoint Exportation API */ -PHPDBG_API void phpdbg_export_breakpoints(FILE *handle TSRMLS_DC); /* }}} */ +PHPDBG_API void phpdbg_export_breakpoints(FILE *handle TSRMLS_DC); +PHPDBG_API void phpdbg_export_breakpoints_to_string(char **str TSRMLS_DC); /* }}} */ #endif /* PHPDBG_BP_H */ |