Ignore:
Timestamp:
2008-02-05T14:02:09Z (16 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b5ed4f8
Parents:
a0f6a61
Message:

convert e820list to a generic physmem command

File:
1 edited

Legend:

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

    ra0f6a61 rb07c332  
    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 %-12s %#10zx %s\n", i + IVT_FIRST, exc_table[i].name,
     125                        printf("%-3u %-14s %#10zx %s\n", i + IVT_FIRST, exc_table[i].name,
    126126                                exc_table[i].f, symbol);
    127127                else
    128                         printf("%-3u %-12s %#18zx %s\n", i + IVT_FIRST, exc_table[i].name,
     128                        printf("%-3u %-14s %#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.