Changes in kernel/arch/amd64/src/debugger.c [49ace23:214ec25c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/src/debugger.c
r49ace23 r214ec25c 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 … … 349 349 { 350 350 #ifdef __32_BITS__ 351 printf("[nr] [count] [address ] [in symbol\n"); 351 printf("# Count Address In symbol\n"); 352 printf("-- ----- ---------- ---------\n"); 352 353 #endif 353 354 354 355 #ifdef __64_BITS__ 355 printf("[nr] [count] [address ] [in symbol\n"); 356 printf("# Count Address In symbol\n"); 357 printf("-- ----- ------------------ ---------\n"); 356 358 #endif 357 359 … … 363 365 364 366 #ifdef __32_BITS__ 365 printf("%- 4u %7" PRIs " %p %s\n", i,367 printf("%-2u %-5" PRIs " %p %s\n", i, 366 368 breakpoints[i].counter, breakpoints[i].address, 367 369 symbol); … … 369 371 370 372 #ifdef __64_BITS__ 371 printf("%- 4u %7" PRIs " %p %s\n", i,373 printf("%-2u %-5" PRIs " %p %s\n", i, 372 374 breakpoints[i].counter, breakpoints[i].address, 373 375 symbol);
Note:
See TracChangeset
for help on using the changeset viewer.