Changeset ccb426c in mainline for kernel/arch/amd64/src/debugger.c
- Timestamp:
- 2010-06-24T09:56:58Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 549012c
- Parents:
- 851f33a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/src/debugger.c
r851f33a rccb426c 349 349 { 350 350 #ifdef __32_BITS__ 351 printf("# Count Address In symbol\n"); 352 printf("-- ----- ---------- ---------\n"); 351 printf("[nr] [count] [address ] [in symbol\n"); 353 352 #endif 354 353 355 354 #ifdef __64_BITS__ 356 printf("# Count Address In symbol\n"); 357 printf("-- ----- ------------------ ---------\n"); 355 printf("[nr] [count] [address ] [in symbol\n"); 358 356 #endif 359 357 … … 365 363 366 364 #ifdef __32_BITS__ 367 printf("%- 2u %-5" PRIs " %p %s\n", i,365 printf("%-4u %7" PRIs " %p %s\n", i, 368 366 breakpoints[i].counter, breakpoints[i].address, 369 367 symbol); … … 371 369 372 370 #ifdef __64_BITS__ 373 printf("%- 2u %-5" PRIs " %p %s\n", i,371 printf("%-4u %7" PRIs " %p %s\n", i, 374 372 breakpoints[i].counter, breakpoints[i].address, 375 373 symbol);
Note:
See TracChangeset
for help on using the changeset viewer.