mirror of
https://github.com/php/php-src.git
synced 2026-03-30 20:22:36 +02:00
...
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user