| 94 | |
| 95 | #ifdef SMP |
| 96 | void |
| 97 | stack_capture_intr(void) |
| 98 | { |
| 99 | struct thread *td; |
| 100 | |
| 101 | td = curthread; |
| 102 | stack_capture(td, stack_intr_stack, TF_FP(td->td_intr_frame)); |
| 103 | atomic_store_rel_ptr((void *)&stack_intr_td, (uintptr_t)td); |
| 104 | } |
| 105 | #endif |
| 106 | |
| 107 | int |
no test coverage detected