phpdbg_break.c 2.0 KB

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