Changeset 25d7709 in mainline for arch/ia32/src/ia32.c


Ignore:
Timestamp:
2006-03-13T20:08:16Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
631ca4d
Parents:
45d6add
Message:

Nicer ia32 interrupt handlers and structures holding interrupted context data.
Unify the name holding interrupted context data on all architectures to be istate.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ia32/src/ia32.c

    r45d6add r25d7709  
    6161                i8254_init();   /* hard clock */
    6262               
    63                 exc_register(VECTOR_SYSCALL, "syscall", syscall);
     63                exc_register(VECTOR_SYSCALL, "syscall", (iroutine) syscall);
    6464               
    6565                #ifdef CONFIG_SMP
    6666                exc_register(VECTOR_TLB_SHOOTDOWN_IPI, "tlb_shootdown",
    67                              tlb_shootdown_ipi);
     67                             (iroutine) tlb_shootdown_ipi);
    6868                #endif /* CONFIG_SMP */
    6969        }
Note: See TracChangeset for help on using the changeset viewer.