Changeset 7f1c620 in mainline for generic/src/interrupt/interrupt.c


Ignore:
Timestamp:
2006-07-04T17:17:56Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0ffa3ef5
Parents:
991779c5
Message:

Replace old u?? types with respective C99 variants (e.g. uint32_t, int64_t, uintptr_t etc.).

File:
1 edited

Legend:

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

    r991779c5 r7f1c620  
    110110        printf("Exc Description Handler\n");
    111111        for (i=0; i < IVT_ITEMS; i++) {
    112                 symbol = get_symtab_entry((__native)exc_table[i].f);
     112                symbol = get_symtab_entry((unative_t)exc_table[i].f);
    113113                if (!symbol)
    114114                        symbol = "not found";
    115115                printf("%d %s %.*p(%s)\n", i + IVT_FIRST, exc_table[i].name,
    116                        sizeof(__address) * 2, exc_table[i].f,symbol);           
     116                       sizeof(uintptr_t) * 2, exc_table[i].f,symbol);           
    117117                if (!((i+1) % 20)) {
    118118                        printf("Press any key to continue.");
Note: See TracChangeset for help on using the changeset viewer.