Searched refs:post_interrupt_callback (Results 1 – 9 of 9) sorted by relevance
246 if (thread->post_interrupt_callback != NULL) { in x86_hardware_interrupt()247 void (*callback)(void*) = thread->post_interrupt_callback; in x86_hardware_interrupt()250 thread->post_interrupt_callback = NULL; in x86_hardware_interrupt()
187 if (thread->post_interrupt_callback != NULL) { in after_exception()188 void (*callback)(void*) = thread->post_interrupt_callback; in after_exception()191 thread->post_interrupt_callback = NULL; in after_exception()
70 if (thread->post_interrupt_callback != NULL) { in AfterInterrupt()71 void (*callback)(void*) = thread->post_interrupt_callback; in AfterInterrupt()74 thread->post_interrupt_callback = NULL; in AfterInterrupt()
477 if (thread->post_interrupt_callback != NULL) { in arch_arm_irq()478 void (*callback)(void*) = thread->post_interrupt_callback; in arch_arm_irq()481 thread->post_interrupt_callback = NULL; in arch_arm_irq()
308 if (hardwareInterrupt && thread->post_interrupt_callback != NULL) { in m68k_exception_entry()309 void (*callback)(void*) = thread->post_interrupt_callback; in m68k_exception_entry()312 thread->post_interrupt_callback = NULL; in m68k_exception_entry()
249 if (thread->post_interrupt_callback != NULL) { in ppc_exception_entry()250 void (*callback)(void*) = thread->post_interrupt_callback; in ppc_exception_entry()253 thread->post_interrupt_callback = NULL; in ppc_exception_entry()
548 void (*post_interrupt_callback)(void*); member
1512 thread->post_interrupt_callback = profiling_flush; in profiling_event()
202 post_interrupt_callback(NULL), in Thread()