Exemple #1
0
void cpuCheckPendingInterrupts(void)
{
  if (cpuGetRaiseInterrupt()) return;
  if (cpu_check_pending_interrupts_func) cpu_check_pending_interrupts_func();
}
Exemple #2
0
void cpuCallCheckPendingInterruptsFunc(void)
{
  if (cpuGetRaiseInterrupt()) return;
  cpuSetRaiseInterrupt(cpu_check_pending_interrupts_func());
}