| 277 | } |
| 278 | |
| 279 | static void |
| 280 | db_trace_self_wrapper(void) |
| 281 | { |
| 282 | jmp_buf jb; |
| 283 | void *prev_jb; |
| 284 | |
| 285 | prev_jb = kdb_jmpbuf(jb); |
| 286 | if (setjmp(jb) == 0) |
| 287 | db_trace_self(); |
| 288 | (void)kdb_jmpbuf(prev_jb); |
| 289 | } |
| 290 | |
| 291 | static void |
| 292 | db_trace_thread_wrapper(struct thread *td) |
nothing calls this directly
no test coverage detected