6 lines
193 B
C++
6 lines
193 B
C++
// Excerpt from the "dispatch" function
|
|
if (interruptService.checkSpuriousInterrupt(slot)) {
|
|
spuriousCounterWrapper.inc();
|
|
return; // Early return to skip the calling of any handlers
|
|
}
|