diff options
author | Bob Weinand <bobwei9@hotmail.com> | 2016-10-02 12:46:22 +0100 |
---|---|---|
committer | Bob Weinand <bobwei9@hotmail.com> | 2016-10-02 12:46:22 +0100 |
commit | f58cf8b24dc01d79a07035a794531bedc1b0b3f3 (patch) | |
tree | de5771069561214d803fa2d02bfe8553fb11ad06 /sapi/phpdbg/phpdbg.h | |
parent | 3fe1010ceebe231afcee8aceae6782c18da23539 (diff) | |
parent | 417a8ef6b45ed8510faf5ebfb7b4f8c76cb97934 (diff) | |
download | php-git-f58cf8b24dc01d79a07035a794531bedc1b0b3f3.tar.gz |
Merge branch 'PHP-7.0' into PHP-7.1
Diffstat (limited to 'sapi/phpdbg/phpdbg.h')
-rw-r--r-- | sapi/phpdbg/phpdbg.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sapi/phpdbg/phpdbg.h b/sapi/phpdbg/phpdbg.h index 3a1ff0e723..84041b125c 100644 --- a/sapi/phpdbg/phpdbg.h +++ b/sapi/phpdbg/phpdbg.h @@ -235,6 +235,8 @@ int phpdbg_do_parse(phpdbg_param_t *stack, char *input); } +void phpdbg_register_file_handles(void); + /* {{{ structs */ ZEND_BEGIN_MODULE_GLOBALS(phpdbg) HashTable bp[PHPDBG_BREAK_TABLES]; /* break points */ @@ -245,6 +247,7 @@ ZEND_BEGIN_MODULE_GLOBALS(phpdbg) phpdbg_frame_t frame; /* frame */ uint32_t last_line; /* last executed line */ + char *cur_command; /* current command */ phpdbg_lexer_data lexer; /* lexer data */ phpdbg_param_t *parser_stack; /* param stack during lexer / parser phase */ |