8 lines
269 B
C++
8 lines
269 B
C++
// Excerpt from the "dispatch" function
|
|
void InterruptDispatcher::dispatch(InterruptVector vec) {
|
|
if (interruptService.checkSpuriousInterrupt(slot)) {
|
|
spuriousCounterWrapper.inc();
|
|
return; // Early return to skip the calling of any handlers
|
|
}
|
|
}
|