#include "copyright.h"#include "interrupt.h"#include "system.h"Go to the source code of this file.
Functions | |
| void | PrintPending (int arg) |
Variables | |
| char * | intLevelNames [] = { "off", "on"} |
| char * | intTypeNames [] |
|
|
Definition at line 345 of file interrupt.cc. References intTypeNames, PendingInterrupt::type, and PendingInterrupt::when. Referenced by Interrupt::DumpState.
00346 {
00347 PendingInterrupt *pend = (PendingInterrupt *)arg;
00348
00349 printf("Interrupt handler %s, scheduled at %d\n",
00350 intTypeNames[pend->type], pend->when);
00351 }
|
|
|
Definition at line 29 of file interrupt.cc. Referenced by Interrupt::ChangeLevel, and Interrupt::DumpState. |
|
|
Initial value: { "timer", "disk", "console write",
"console read", "network send", "network recv"}Definition at line 30 of file interrupt.cc. Referenced by Interrupt::CheckIfDue, PrintPending, and Interrupt::Schedule. |
1.2.14 written by Dimitri van Heesch,
© 1997-2002