Changes in kernel/arch/amd64/src/debugger.c [49ace23:ccb426c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/src/debugger.c
r49ace23 rccb426c 230 230 return; 231 231 232 printf("*** Found ZERO on address % " PRIp "(slot %d) ***\n",232 printf("*** Found ZERO on address %lx (slot %d) ***\n", 233 233 breakpoints[slot].address, slot); 234 234 } else { 235 printf("Data watchpoint - new data: % " PRIp "\n",235 printf("Data watchpoint - new data: %lx\n", 236 236 *((unative_t *) breakpoints[slot].address)); 237 237 } 238 238 } 239 239 240 printf("Reached breakpoint %d:% " PRIp "(%s)\n", slot, getip(istate),240 printf("Reached breakpoint %d:%lx (%s)\n", slot, getip(istate), 241 241 symtab_fmt_name_lookup(getip(istate))); 242 242
Note:
See TracChangeset
for help on using the changeset viewer.