-
-int
- dump_act(thread_t thr_act)
-{
- if (!thr_act)
- return(0);
-
- printf("thread(0x%x)(%d): task=%x(%d)\n",
- thr_act, thr_act->ref_count,
- thr_act->task, thr_act->task ? thr_act->task->ref_count : 0);
-
- printf("\tsusp=%x active=%x\n",
- thr_act->suspend_count, thr_act->active);
-
- return((int)thr_act);
-}
-
-#endif