Home
last modified time | relevance | path

Searched refs:td_state (Results 1 – 13 of 13) sorted by relevance

/f-stack/freebsd/ddb/
H A Ddb_ps.c176 if (td->td_state == TDS_RUNNING || in db_ps_proc()
177 td->td_state == TDS_RUNQ || in db_ps_proc()
178 td->td_state == TDS_CAN_RUN) in db_ps_proc()
270 switch (td->td_state) { in dumpthread()
370 switch (td->td_state) { in DB_SHOW_COMMAND()
416 db_printf("??? (%#x)\n", td->td_state); in DB_SHOW_COMMAND()
H A Ddb_command.c857 if (td->td_state == TDS_RUNNING) in _db_stack_trace_all()
/f-stack/freebsd/sys/
H A Dproc.h349 } td_state; /* (t) thread state */ member
543 #define TD_IS_RUNNING(td) ((td)->td_state == TDS_RUNNING)
544 #define TD_ON_RUNQ(td) ((td)->td_state == TDS_RUNQ)
545 #define TD_CAN_RUN(td) ((td)->td_state == TDS_CAN_RUN)
546 #define TD_IS_INHIBITED(td) ((td)->td_state == TDS_INHIBITED)
561 (td)->td_state = TDS_INHIBITED; \
568 (td)->td_state = TDS_CAN_RUN; \
584 #define TD_SET_RUNNING(td) (td)->td_state = TDS_RUNNING
585 #define TD_SET_RUNQ(td) (td)->td_state = TDS_RUNQ
586 #define TD_SET_CAN_RUN(td) (td)->td_state = TDS_CAN_RUN
/f-stack/freebsd/kern/
H A Dkern_synch.c573 switch (td->td_state) { in setrunnable()
596 panic("setrunnable: state 0x%x", td->td_state); in setrunnable()
H A Dkern_thread.c349 td->td_state = TDS_INACTIVE; in thread_ctor()
382 switch (td->td_state) { in thread_dtor()
947 td->td_state = TDS_INACTIVE; in thread_exit()
996 td->td_state = TDS_INACTIVE; in thread_link()
H A Dsubr_turnstile.c291 td->td_tid, td->td_name, td->td_state, in propagate_priority()
1188 switch (td->td_state) { in print_lockchain()
1227 db_printf("??? (%#x)\n", td->td_state); in print_lockchain()
H A Dinit_main.c502 td->td_state = TDS_RUNNING; in proc0_init()
H A Dkern_racct.c1150 switch (td->td_state) { in racct_proc_throttle()
H A Dkern_intr.c995 __func__, td->td_proc->p_pid, td->td_name, it->it_need, td->td_state); in intr_event_schedule_thread()
H A Dsched_4bsd.c1767 switch (td->td_state) { in sched_affinity()
H A Dkern_prot.c1958 MPASS(td->td_state == TDS_INACTIVE); in credbatch_add()
/f-stack/lib/
H A Dff_init_main.c417 td->td_state = TDS_RUNNING; in proc0_init()
/f-stack/freebsd/vm/
H A Dvm_meter.c210 switch (td->td_state) { in vmtotal()