diff options
author | Felipe Pena <felipensp@gmail.com> | 2013-11-24 11:36:29 -0200 |
---|---|---|
committer | Felipe Pena <felipensp@gmail.com> | 2013-11-24 11:36:29 -0200 |
commit | 97f733e60d103ce2ebac7a11c26dbd707cd469e5 (patch) | |
tree | 09daa9419acd4b1704cc3367e5177a32055159f0 /phpdbg_info.c | |
parent | e10bfd3b790d30e67c64236764136cc0c0d19957 (diff) | |
download | php-git-97f733e60d103ce2ebac7a11c26dbd707cd469e5.tar.gz |
- Moved information about breakpoints to "info break"
Diffstat (limited to 'phpdbg_info.c')
-rw-r--r-- | phpdbg_info.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/phpdbg_info.c b/phpdbg_info.c index d665f92d7d..51e3a336ae 100644 --- a/phpdbg_info.c +++ b/phpdbg_info.c @@ -21,9 +21,22 @@ #include "phpdbg.h" #include "phpdbg_utils.h" #include "phpdbg_info.h" +#include "phpdbg_bp.h" ZEND_EXTERN_MODULE_GLOBALS(phpdbg); +PHPDBG_INFO(break) /* {{{ */ +{ + phpdbg_print_breakpoints(PHPDBG_BREAK_FILE TSRMLS_CC); + phpdbg_print_breakpoints(PHPDBG_BREAK_SYM TSRMLS_CC); + phpdbg_print_breakpoints(PHPDBG_BREAK_METHOD TSRMLS_CC); + phpdbg_print_breakpoints(PHPDBG_BREAK_OPLINE TSRMLS_CC); + phpdbg_print_breakpoints(PHPDBG_BREAK_COND TSRMLS_CC); + phpdbg_print_breakpoints(PHPDBG_BREAK_OPCODE TSRMLS_CC); + + return SUCCESS; +} /* }}} */ + PHPDBG_INFO(files) /* {{{ */ { HashPosition pos; |