summaryrefslogtreecommitdiff
path: root/sapi/phpdbg/phpdbg.h
diff options
context:
space:
mode:
authorBob Weinand <bobwei9@hotmail.com>2016-10-02 12:45:20 +0100
committerBob Weinand <bobwei9@hotmail.com>2016-10-02 12:45:20 +0100
commit417a8ef6b45ed8510faf5ebfb7b4f8c76cb97934 (patch)
tree6e92374e9258aeb296a52f64340109516b1bbb91 /sapi/phpdbg/phpdbg.h
parent9d537951c5e4af5e453dd4d60e74dad039856b80 (diff)
downloadphp-git-417a8ef6b45ed8510faf5ebfb7b4f8c76cb97934.tar.gz
Fix run command args passing when inmidst execution
Diffstat (limited to 'sapi/phpdbg/phpdbg.h')
-rw-r--r--sapi/phpdbg/phpdbg.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/sapi/phpdbg/phpdbg.h b/sapi/phpdbg/phpdbg.h
index 1879e62252..94c5471e22 100644
--- a/sapi/phpdbg/phpdbg.h
+++ b/sapi/phpdbg/phpdbg.h
@@ -232,6 +232,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 */
@@ -242,6 +244,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 */