size_t exec_len; /* size of exec */
zend_op_array *ops; /* op_array */
zval *retval; /* return value */
- size_t bp_count; /* breakpoint count */
+ int bp_count; /* breakpoint count */
int stepping; /* stepping */
int vmret; /* return from last opcode handler execution */
zend_bool has_file_bp; /* file-based breakpoint has been set */
typedef struct _phpdbg_breakfile_t {
const char *filename;
long line;
- size_t id;
+ int id;
} phpdbg_breakfile_t;
/**
typedef struct _phpdbg_breaksymbol_t {
const char *symbol;
long opline_num;
- size_t id;
+ int id;
} phpdbg_breaksymbol_t;
void phpdbg_set_breakpoint_file(const char*, const char* TSRMLS_DC);