Changeset 84439d7 in mainline for kernel/arch/mips32/src/debugger.c
- Timestamp:
- 2010-12-05T09:34:46Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 75732da
- Parents:
- 56b962d (diff), 35537a7 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/src/debugger.c
r56b962d r84439d7 191 191 } 192 192 193 printf("Adding breakpoint on address %p\n", argv->intval);193 printf("Adding breakpoint on address %p\n", (void *) argv->intval); 194 194 195 195 cur->address = (uintptr_t) argv->intval; … … 267 267 breakpoints[i].address); 268 268 269 printf("%-4u %7 " PRIs "%p %-8s %-9s %-10s %s\n", i,270 breakpoints[i].counter, breakpoints[i].address,269 printf("%-4u %7zu %p %-8s %-9s %-10s %s\n", i, 270 breakpoints[i].counter, (void *) breakpoints[i].address, 271 271 ((breakpoints[i].flags & BKPOINT_INPROG) ? "true" : 272 272 "false"), ((breakpoints[i].flags & BKPOINT_ONESHOT) … … 366 366 367 367 if (!(cur->flags & BKPOINT_FUNCCALL)) { 368 printf("***Breakpoint %u: %p in %s.\n", i, fireaddr, 368 printf("***Breakpoint %u: %p in %s.\n", i, 369 (void *) fireaddr, 369 370 symtab_fmt_name_lookup(fireaddr)); 370 371 } … … 381 382 cur->flags |= BKPOINT_INPROG; 382 383 } else { 383 printf("***Breakpoint %d: %p in %s.\n", i, fireaddr, 384 printf("***Breakpoint %d: %p in %s.\n", i, 385 (void *) fireaddr, 384 386 symtab_fmt_name_lookup(fireaddr)); 385 387
Note:
See TracChangeset
for help on using the changeset viewer.