| 41 | #include <ddb/db_sym.h> |
| 42 | |
| 43 | void |
| 44 | db_print_thread(void) |
| 45 | { |
| 46 | pid_t pid; |
| 47 | |
| 48 | pid = -1; |
| 49 | if (kdb_thread->td_proc != NULL) |
| 50 | pid = kdb_thread->td_proc->p_pid; |
| 51 | db_printf("[ thread pid %d tid %ld ]\n", pid, (long)kdb_thread->td_tid); |
| 52 | } |
| 53 | |
| 54 | void |
| 55 | db_set_thread(db_expr_t tid, bool hastid, db_expr_t cnt, char *mod) |
no test coverage detected