Changeset cf85e24c in mainline for arch/amd64/src/debugger.c
- Timestamp:
- 2006-04-22T23:00:26Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 12c7f27
- Parents:
- e692a27
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/amd64/src/debugger.c
re692a27 rcf85e24c 232 232 if (*((__native *) breakpoints[slot].address) != 0) 233 233 return; 234 printf("**** Found ZERO on address % P****\n",234 printf("**** Found ZERO on address %p ****\n", 235 235 slot, breakpoints[slot].address); 236 236 } else { 237 printf("Data watchpoint - new data: % P\n",237 printf("Data watchpoint - new data: %p\n", 238 238 *((__native *) breakpoints[slot].address)); 239 239 } 240 240 } 241 printf("Reached breakpoint %d:% P(%s)\n", slot, getip(istate),241 printf("Reached breakpoint %d:%p(%s)\n", slot, getip(istate), 242 242 get_symtab_entry(getip(istate))); 243 243 printf("***Type 'exit' to exit kconsole.\n");
Note:
See TracChangeset
for help on using the changeset viewer.