1
0
mirror of https://github.com/php/php-src.git synced 2026-03-30 20:22:36 +02:00
This commit is contained in:
krakjoe
2013-11-11 13:07:02 +00:00
parent 764d7d492c
commit be460647ef
2 changed files with 5 additions and 4 deletions

View File

@@ -152,9 +152,7 @@ int phpdbg_find_breakpoint_symbol(zend_function *fbc TSRMLS_DC) /* {{{ */
return FAILURE;
} /* }}} */
typedef struct _zend_op *zend_op_ptr;
int phpdbg_find_breakpoint_opline(zend_op_ptr opline TSRMLS_DC) /* {{{ */
int phpdbg_find_breakpoint_opline(phpdbg_opline_ptr_t opline TSRMLS_DC) /* {{{ */
{
phpdbg_breakline_t *bp;

View File

@@ -20,6 +20,9 @@
#ifndef PHPDBG_BP_H
#define PHPDBG_BP_H
/* {{{ */
typedef struct _zend_op *phpdbg_opline_ptr_t; /* }}} */
/**
* Breakpoint file-based representation
*/
@@ -52,6 +55,6 @@ void phpdbg_set_breakpoint_opline(const char* TSRMLS_DC);
int phpdbg_find_breakpoint_file(zend_op_array* TSRMLS_DC);
int phpdbg_find_breakpoint_symbol(zend_function* TSRMLS_DC);
int phpdbg_find_breakpoint_opline(zend_op* TSRMLS_DC);
int phpdbg_find_breakpoint_opline(phpdbg_opline_ptr_t TSRMLS_DC);
#endif /* PHPDBG_BP_H */