| 88 | } |
| 89 | |
| 90 | static void |
| 91 | db_watchpoint_free(db_watchpoint_t watch) |
| 92 | { |
| 93 | watch->link = db_free_watchpoints; |
| 94 | db_free_watchpoints = watch; |
| 95 | } |
| 96 | |
| 97 | static void |
| 98 | db_set_watchpoint(vm_map_t map, db_addr_t addr, vm_size_t size) |
no outgoing calls
no test coverage detected