1 /*
2 +----------------------------------------------------------------------+
3 | PHP Version 5 |
4 +----------------------------------------------------------------------+
5 | Copyright (c) 1997-2016 The PHP Group |
6 +----------------------------------------------------------------------+
7 | This source file is subject to version 3.01 of the PHP license, |
8 | that is bundled with this package in the file LICENSE, and is |
9 | available through the world-wide-web at the following url: |
10 | http://www.php.net/license/3_01.txt |
11 | If you did not receive a copy of the PHP license and are unable to |
12 | obtain it through the world-wide-web, please send a note to |
13 | license@php.net so we can mail you a copy immediately. |
14 +----------------------------------------------------------------------+
15 | Authors: Felipe Pena <felipe@php.net> |
16 | Authors: Joe Watkins <joe.watkins@live.co.uk> |
17 | Authors: Bob Weinand <bwoebi@php.net> |
18 +----------------------------------------------------------------------+
19 */
20
21 #include "phpdbg.h"
22 #include "phpdbg_print.h"
23 #include "phpdbg_utils.h"
24 #include "phpdbg_opcode.h"
25 #include "phpdbg_break.h"
26 #include "phpdbg_bp.h"
27 #include "phpdbg_prompt.h"
28
29 ZEND_EXTERN_MODULE_GLOBALS(phpdbg);
30
31 #define PHPDBG_BREAK_COMMAND_D(f, h, a, m, l, s) \
32 PHPDBG_COMMAND_D_EXP(f, h, a, m, l, s, &phpdbg_prompt_commands[10])
33
34 /**
35 * Commands
36 */
37 const phpdbg_command_t phpdbg_break_commands[] = {
38 PHPDBG_BREAK_COMMAND_D(at, "specify breakpoint by location and condition", '@', break_at, NULL, "*c"),
39 PHPDBG_BREAK_COMMAND_D(del, "delete breakpoint by identifier number", '~', break_del, NULL, "n"),
40 PHPDBG_END_COMMAND
41 };
42
PHPDBG_BREAK(at)43 PHPDBG_BREAK(at) /* {{{ */
44 {
45 phpdbg_set_breakpoint_at(param TSRMLS_CC);
46
47 return SUCCESS;
48 } /* }}} */
49
PHPDBG_BREAK(del)50 PHPDBG_BREAK(del) /* {{{ */
51 {
52 phpdbg_delete_breakpoint(param->num TSRMLS_CC);
53
54 return SUCCESS;
55 } /* }}} */
56