Changeset ad45bde9 in mainline for generic/src/interrupt/interrupt.c


Ignore:
Timestamp:
2006-04-23T14:17:44Z (19 years ago)
Author:
Josef Cejka <malyzelenyhnus@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1f41004e
Parents:
6ecc8bce
Message:

Fix pointers output format.
Fix format of slab and zones tables.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • generic/src/interrupt/interrupt.c

    r6ecc8bce rad45bde9  
    9797                if (!symbol)
    9898                        symbol = "not found";
    99                 printf("%d %s %p(%s)\n", i + IVT_FIRST, exc_table[i].name,
    100                        exc_table[i].f,symbol);         
     99                printf("%d %s %.*p(%s)\n", i + IVT_FIRST, exc_table[i].name,
     100                       sizeof(__address) * 2, exc_table[i].f,symbol);           
    101101                if (!((i+1) % 20)) {
    102102                        printf("Press any key to continue.");
Note: See TracChangeset for help on using the changeset viewer.