| 134 | int amd64_clr_watch(int watchnum, struct dbreg *d); |
| 135 | |
| 136 | static void |
| 137 | db_print_stack_entry(const char *name, db_addr_t callpc, void *frame) |
| 138 | { |
| 139 | |
| 140 | db_printf("%s() at ", name != NULL ? name : "??"); |
| 141 | db_printsym(callpc, DB_STGY_PROC); |
| 142 | if (frame != NULL) |
| 143 | db_printf("/frame 0x%lx", (register_t)frame); |
| 144 | db_printf("\n"); |
| 145 | } |
| 146 | |
| 147 | static void |
| 148 | decode_syscall(int number, struct thread *td) |
no test coverage detected