| 173 | } |
| 174 | |
| 175 | void |
| 176 | stack_save(struct stack *st) |
| 177 | { |
| 178 | uintptr_t pc, sp; |
| 179 | |
| 180 | pc = (uintptr_t)&&here; |
| 181 | sp = (uintptr_t)__builtin_frame_address(0); |
| 182 | here: |
| 183 | stack_capture(st, curthread, pc, sp); |
| 184 | } |
nothing calls this directly
no test coverage detected