1
Files
interrupt-handling-using-th…/code/interruptdispatcher_ignore_spurious.cpp
2023-02-26 21:12:51 +01:00

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
}