PKUOS - Pintos
Pintos source browser for PKU Operating System course
|
Go to the source code of this file.
Typedefs | |
typedef void | intr_stub_func(void) |
Interrupt stubs. More... | |
Functions | |
void | intr_exit (void) |
Interrupt return path. More... | |
Variables | |
intr_stub_func * | intr_stubs [256] |
typedef void intr_stub_func(void) |
Interrupt stubs.
These are little snippets of code in intr-stubs.S, one for each of the 256 possible x86 interrupts. Each one does a little bit of stack manipulation, then jumps to intr_entry(). See intr-stubs.S for more information.
This array points to each of the interrupt stub entry points so that intr_init() can easily find them.
Definition at line 13 of file intr-stubs.h.
void intr_exit | ( | void | ) |
Interrupt return path.
|
extern |
Referenced by intr_init(), and register_handler().