Changeset 7c5a8dd in mainline for kernel/arch/xen32/src/pm.c


Ignore:
Timestamp:
2006-08-01T23:34:02Z (19 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
adf7f9c
Parents:
5b23a82
Message:

xen32: proper virtual traps, domU asynchronous console

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/xen32/src/pm.c

    r5b23a82 r7c5a8dd  
    104104}
    105105
     106static void trap(void)
     107{
     108}
     109
    106110void traps_init(void)
    107111{
     
    117121               
    118122                traps[i].cs = XEN_CS;
    119                 traps[i].address = ((uintptr_t) interrupt_handlers) + i * interrupt_handler_size;
     123                traps[i].address = trap;
    120124                exc_register(i, "undef", (iroutine) null_interrupt);
    121125        }
Note: See TracChangeset for help on using the changeset viewer.