From 5c8a9dbf0f5cb3b314fdecf87236ae88f4aa5c8e Mon Sep 17 00:00:00 2001 From: marcel Date: Sat, 10 Sep 2005 03:01:25 +0000 Subject: Move the prototypes of db_md_set_watchpoint(), db_md_clr_watchpoint() and db_md_list_watchpoints() to ddb/ddb.h. --- sys/ddb/ddb.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'sys/ddb/ddb.h') diff --git a/sys/ddb/ddb.h b/sys/ddb/ddb.h index a9cd0f2..45f9213 100644 --- a/sys/ddb/ddb.h +++ b/sys/ddb/ddb.h @@ -101,6 +101,9 @@ void db_iprintf(const char *,...) __printflike(1, 2); struct vm_map *db_map_addr(vm_offset_t); boolean_t db_map_current(struct vm_map *); boolean_t db_map_equal(struct vm_map *, struct vm_map *); +int db_md_set_watchpoint(db_expr_t addr, db_expr_t size); +int db_md_clr_watchpoint(db_expr_t addr, db_expr_t size); +void db_md_list_watchpoints(void); void db_print_loc_and_inst(db_addr_t loc); void db_print_thread(void); void db_printf(const char *fmt, ...) __printflike(1, 2); -- cgit v1.1