Changeset 1b067315 in mainline


Ignore:
Timestamp:
2008-02-06T13:56:02Z (17 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
71eef11
Parents:
0b5f9fa
Message:

enlarge description field

File:
1 edited

Legend:

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

    r0b5f9fa r1b067315  
    110110       
    111111        if (sizeof(void *) == 4) {
    112                 printf("Exc Description    Handler    Symbol\n");
    113                 printf("--- -------------- ---------- --------\n");
     112                printf("Exc Description          Handler    Symbol\n");
     113                printf("--- -------------------- ---------- --------\n");
    114114        } else {
    115                 printf("Exc Description    Handler            Symbol\n");
    116                 printf("--- -------------- ------------------ --------\n");
     115                printf("Exc Description          Handler            Symbol\n");
     116                printf("--- -------------------- ------------------ --------\n");
    117117        }
    118118       
     
    123123               
    124124                if (sizeof(void *) == 4)
    125                         printf("%-3u %-14s %#10zx %s\n", i + IVT_FIRST, exc_table[i].name,
     125                        printf("%-3u %-20s %#10zx %s\n", i + IVT_FIRST, exc_table[i].name,
    126126                                exc_table[i].f, symbol);
    127127                else
    128                         printf("%-3u %-14s %#18zx %s\n", i + IVT_FIRST, exc_table[i].name,
     128                        printf("%-3u %-20s %#18zx %s\n", i + IVT_FIRST, exc_table[i].name,
    129129                                exc_table[i].f, symbol);
    130130               
Note: See TracChangeset for help on using the changeset viewer.