From: krakjoe Date: Thu, 14 Nov 2013 09:18:06 +0000 (+0000) Subject: clear conditional breaks in uapi X-Git-Tag: php-5.6.0alpha1~110^2~345 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6eba5c66644d9b1c39aefee27ff1176f7a4f8742;p=php clear conditional breaks in uapi --- diff --git a/phpdbg.c b/phpdbg.c index 6518b85827..961526c33b 100644 --- a/phpdbg.c +++ b/phpdbg.c @@ -131,6 +131,7 @@ static PHP_FUNCTION(phpdbg_clear) zend_hash_clean(&PHPDBG_G(bp)[PHPDBG_BREAK_SYM]); zend_hash_clean(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE]); zend_hash_clean(&PHPDBG_G(bp)[PHPDBG_BREAK_METHOD]); + zend_hash_clean(&PHPDBG_G(bp)[PHPDBG_BREAK_COND]); } /* }}} */ zend_function_entry phpdbg_user_functions[] = { diff --git a/phpdbg_help.h b/phpdbg_help.h index 8cf7b1ded7..4e15bda224 100644 --- a/phpdbg_help.h +++ b/phpdbg_help.h @@ -52,9 +52,9 @@ PHPDBG_HELP(list); * Commands */ static const phpdbg_command_t phpdbg_help_commands[] = { - PHPDBG_HELP_D(exec, "the execution context should be a valid phpdbg path"), + PHPDBG_HELP_D(exec, "the execution context should be a valid path"), PHPDBG_HELP_D(compile, "pre-compilation allows inspection of code before execution"), - PHPDBG_HELP_D(step, "stepping through execution allows inspection of the opline after every opcode"), + PHPDBG_HELP_D(step, "stepping through execution allows inspection of the opline as it is executed"), PHPDBG_HELP_D(next, "continue executing while stepping or after breaking"), PHPDBG_HELP_D(run, "execution inside the phpdbg vm allows detailed inspection and debugging"), PHPDBG_HELP_D(eval, "access to eval() allows you to affect the environment during execution"),