PHPDBG_G(flags) |= PHPDBG_HAS_METHOD_OPLINE_BP;
+ PHPDBG_BREAK_MAPPING(new_break.id, method_table);
+
zend_hash_index_update(method_table, opline, &new_break, sizeof(phpdbg_breakopline_t), NULL);
}
return;
}
+ PHPDBG_BREAK_MAPPING(new_break.id, func_table);
+
PHPDBG_G(flags) |= PHPDBG_HAS_FUNCTION_OPLINE_BP;
zend_hash_index_update(func_table, opline, &new_break, sizeof(phpdbg_breakopline_t), NULL);
return;
}
+ PHPDBG_BREAK_MAPPING(new_break.id, file_table);
+
PHPDBG_G(flags) |= PHPDBG_HAS_FILE_OPLINE_BP;
zend_hash_index_update(file_table, opline, &new_break, sizeof(phpdbg_breakopline_t), NULL);