This commit is contained in:
krakjoe 2013-11-10 13:06:57 +00:00
parent c6cb411d39
commit 8043d1ee5f
2 changed files with 9 additions and 0 deletions

View File

@ -51,6 +51,13 @@ PHPDBG_HELP(print) /* {{{ */
return SUCCESS;
} /* }}} */
PHPDBG_HELP(run) /* {{{ */
{
printf("Run the code inside the debug vm, you should have break points and variables set before running\n");
printf("The execution context must not be set, but not necessarily compiled before execution occurs\n");
return SUCCESS;
} /* }}} */
PHPDBG_HELP(break) /* {{{ */
{
printf("doing break help: %s\n", expr);

View File

@ -33,6 +33,7 @@
*/
PHPDBG_HELP(exec);
PHPDBG_HELP(compile);
PHPDBG_HELP(run);
PHPDBG_HELP(print);
PHPDBG_HELP(break);
@ -42,6 +43,7 @@ PHPDBG_HELP(break);
static const phpdbg_command_t phpdbg_help_commands[] = {
PHPDBG_HELP_D(exec, "the execution context should be a valid phpdbg path"),
PHPDBG_HELP_D(compile, "pre-compilation allows inspection of code before execution"),
PHPDBG_HELP_D(run, "execution inside the phpdbg vm allows detailed inspection and debugging"),
PHPDBG_HELP_D(print, "printing allows inspection of the execution environment"),
PHPDBG_HELP_D(break, "breakpoints allow execution interruption"),
{NULL, 0, 0}