fix symbol breakpoints

This commit is contained in:
krakjoe 2013-11-10 18:56:19 +00:00
parent fa63ecbba9
commit 663a13635a
3 changed files with 30 additions and 12 deletions

View file

@ -82,10 +82,12 @@ PHPDBG_HELP(break) /* {{{ */
{
printf("Setting a breakpoint stops execution at a specific stage, the syntax is:\n");
printf("\tfile:line\n");
printf("[more to come]\n");
printf("\tfunction\n");
printf("For example:\n");
printf("\tphpdbg> break test.php:1\n");
printf("Will break execution on line 1 of test.php\n");
printf("\tphpdbg> break my_function\n");
printf("Will break execution on entry to my_function\n");
return SUCCESS;
} /* }}} */