| 289 | } |
| 290 | |
| 291 | static void |
| 292 | db_trace_thread_wrapper(struct thread *td) |
| 293 | { |
| 294 | jmp_buf jb; |
| 295 | void *prev_jb; |
| 296 | |
| 297 | prev_jb = kdb_jmpbuf(jb); |
| 298 | if (setjmp(jb) == 0) |
| 299 | db_trace_thread(td, -1); |
| 300 | (void)kdb_jmpbuf(prev_jb); |
| 301 | } |
nothing calls this directly
no test coverage detected