mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-31 12:13:10 +00:00
Revert previous and move the prototype for db_alt_break to ddb.h.
Requested by: bde (I think)
This commit is contained in:
parent
addea9d4d7
commit
d43f696c1c
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=108512
@ -41,10 +41,8 @@
|
||||
#define BKPT_INST_TYPE int
|
||||
#endif
|
||||
|
||||
struct vm_map;
|
||||
|
||||
struct db_breakpoint {
|
||||
struct vm_map *map; /* in this map */
|
||||
vm_map_t map; /* in this map */
|
||||
db_addr_t address; /* set here */
|
||||
int init_count; /* number of times to skip bkpt */
|
||||
int count; /* current count */
|
||||
@ -66,8 +64,4 @@ void db_set_breakpoints(void);
|
||||
db_breakpoint_t db_set_temp_breakpoint(db_addr_t);
|
||||
#endif
|
||||
|
||||
#ifdef ALT_BREAK_TO_DEBUGGER
|
||||
int db_alt_break(int, int *);
|
||||
#endif
|
||||
|
||||
#endif /* !_DDB_DB_BREAK_H_ */
|
||||
|
@ -79,6 +79,9 @@ extern db_expr_t db_tab_stop_width;
|
||||
|
||||
struct vm_map;
|
||||
|
||||
#ifdef ALT_BREAK_TO_DEBUGGER
|
||||
int db_alt_break(int, int *);
|
||||
#endif
|
||||
void db_check_interrupt(void);
|
||||
void db_clear_watchpoints(void);
|
||||
db_addr_t db_disasm(db_addr_t loc, boolean_t altfmt);
|
||||
|
Loading…
Reference in New Issue
Block a user