diff options
author | Felipe Pena <felipensp@gmail.com> | 2013-11-24 10:02:37 -0200 |
---|---|---|
committer | Felipe Pena <felipensp@gmail.com> | 2013-11-24 10:02:37 -0200 |
commit | dfbde3de5ec984b5a3a8057c95d790835d9daf0b (patch) | |
tree | 11aca573cabb35d88eb467aa695a55d35c97815a /phpdbg.h | |
parent | 94cc2587150e6a75bd08bb48005ed4d6c393f59c (diff) | |
parent | 7c51efd4735db75361ff842efa17b47cdc65f123 (diff) | |
download | php-git-dfbde3de5ec984b5a3a8057c95d790835d9daf0b.tar.gz |
Merge branch 'master' of github.com:krakjoe/phpdbg
Diffstat (limited to 'phpdbg.h')
-rw-r--r-- | phpdbg.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -121,7 +121,7 @@ /* {{{ strings */ #define PHPDBG_ISSUES "http://github.com/krakjoe/phpdbg/issues" -#define PHPDBG_VERSION "0.1.1-dev" /* }}} */ +#define PHPDBG_VERSION "0.2.0-dev" /* }}} */ /* {{{ output descriptors */ #define PHPDBG_STDIN 0 @@ -136,6 +136,7 @@ ZEND_BEGIN_MODULE_GLOBALS(phpdbg) zend_op_array *ops; /* op_array */ zval *retval; /* return value */ int bp_count; /* breakpoint count */ + int del_bp_num; /* breakpoint to delete */ int vmret; /* return from last opcode handler execution */ phpdbg_command_t *lcmd; /* last command */ phpdbg_param_t lparam; /* last param */ |