| 72 | |
| 73 | #ifdef ARCH_USING_IRQ_CTX_LIST |
| 74 | void rt_interrupt_context_push(rt_interrupt_context_t this_ctx) |
| 75 | { |
| 76 | struct rt_cpu *this_cpu = rt_cpu_self(); |
| 77 | rt_slist_insert(&this_cpu->irq_ctx_head, &this_ctx->node); |
| 78 | } |
| 79 | |
| 80 | void rt_interrupt_context_pop(void) |
| 81 | { |
no test coverage detected