| 345 | } |
| 346 | |
| 347 | int |
| 348 | dbg_remove_watchpoint(db_expr_t addr, db_expr_t size __unused) |
| 349 | { |
| 350 | struct dbg_wb_conf conf; |
| 351 | |
| 352 | conf.address = addr; |
| 353 | conf.type = DBG_TYPE_WATCHPOINT; |
| 354 | |
| 355 | return (dbg_remove_xpoint(&conf)); |
| 356 | } |
| 357 | |
| 358 | static int |
| 359 | dbg_setup_breakpoint(db_expr_t addr, db_expr_t size, u_int slot) |
no test coverage detected