Lines Matching defs:t_state
51 * Values that t_state may assume. Note that t_state cannot have more
123 uint_t t_state; /* thread state (protected by thread_lock) */
192 * Pointer to the dispatcher lock protecting t_state and state-related
356 * to give assurrance that they are consistent with t_state:
441 #define ISTOPPED(t) ((t)->t_state == TS_STOPPED && \
445 #define ISWAKEABLE(t) (((t)->t_state == TS_SLEEP && \
449 #define ISWAITING(t) ((t)->t_state == TS_WAIT)
452 #define CPR_ISTOPPED(t) ((t)->t_state == TS_STOPPED && \
463 ((t)->t_state == TS_SLEEP && \
469 #define SUSPENDED(t) ((t)->t_state == TS_STOPPED && \
615 ((tp)->t_state = state, (tp)->t_lockp = lp)