Home
last modified time | relevance | path

Searched refs:TS_LOAD (Results 1 – 15 of 15) sorted by relevance

/illumos-gate/usr/src/uts/common/os/
H A Dsched.c220 if (t->t_schedflag & TS_LOAD) in sched()
277 TS_ON_SWAPQ | TS_LOAD)) != TS_LOAD) in sched()
421 TS_ON_SWAPQ | TS_LOAD)) != TS_LOAD) in sched()
555 (tp->t_schedflag & TS_LOAD) == 0) { in swapin()
598 tp->t_schedflag |= TS_LOAD; in swapin()
664 (TS_DONT_SWAP | TS_LOAD)) == TS_LOAD); in swapout()
678 ~(TS_LOAD | TS_SWAPENQ); in swapout()
857 ASSERT(tp->t_schedflag & (TS_LOAD | TS_ON_SWAPQ)); in process_swap_queue()
859 tp->t_schedflag &= ~(TS_LOAD | TS_ON_SWAPQ); in process_swap_queue()
H A Dtimers.c661 if (!(t->t_schedflag & TS_LOAD)) { in realprofexpire()
H A Dcpu.c2715 (tp->t_schedflag & (TS_LOAD | TS_ON_SWAPQ)) in cpu_bind_thread()
2716 != TS_LOAD); in cpu_bind_thread()
/illumos-gate/usr/src/uts/common/disp/
H A Ddisp.c799 ASSERT(tp->t_schedflag & TS_LOAD); /* thread must be swapped in */ in disp()
1216 if ((tp->t_schedflag & (TS_LOAD | TS_ON_SWAPQ)) != TS_LOAD) { in setbackdq()
1400 if ((tp->t_schedflag & (TS_LOAD | TS_ON_SWAPQ)) != TS_LOAD) { in setfrontdq()
1622 if ((tp->t_schedflag & (TS_LOAD | TS_ON_SWAPQ)) != TS_LOAD) in dispdeq()
1699 ASSERT(t->t_schedflag & TS_LOAD); in dq_sruninc()
1712 ASSERT(t->t_schedflag & TS_LOAD); in dq_srundec()
1728 ASSERT(tp->t_schedflag & TS_LOAD); in disp_swapped_enq()
1760 ASSERT((tp->t_schedflag & (TS_LOAD | TS_ON_SWAPQ)) != TS_LOAD); in disp_swapped_setrun()
H A Dts.c1538 if (t->t_state == TS_RUN && (t->t_schedflag & TS_LOAD) == 0) { in ts_swapin()
1600 !(t->t_schedflag & TS_LOAD) || !SWAP_OK(t)) in ts_swapout()
1702 if ((t->t_schedflag & TS_LOAD) && in ts_tick()
H A Dfss.c2148 if (t->t_state == TS_RUN && (t->t_schedflag & TS_LOAD) == 0) { in fss_swapin()
2193 !(t->t_schedflag & TS_LOAD) || in fss_swapout()
2463 if ((t->t_schedflag & TS_LOAD) && in fss_tick()
H A Drt.c965 if (t->t_state == TS_RUN && (t->t_schedflag & TS_LOAD) == 0) { in rt_swapin()
H A Dfx.c1247 if (t->t_state == TS_RUN && (t->t_schedflag & TS_LOAD) == 0) { in fx_swapin()
H A Dthread.c435 t->t_schedflag = TS_LOAD | TS_DONT_SWAP; in thread_create()
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dfindstack_subr.c167 if ((thr.t_schedflag & TS_LOAD) == 0) { in stacks_findstack()
H A Dleaky_subr.c289 if (!(t->t_schedflag & TS_LOAD)) { in leaky_thread()
H A Dkmem.c4351 if (!(t->t_schedflag & TS_LOAD)) { in whatthread_walk_thread()
/illumos-gate/usr/src/uts/i86pc/os/
H A Dmlsetup.c328 t0.t_schedflag = TS_LOAD | TS_DONT_SWAP; in mlsetup()
/illumos-gate/usr/src/uts/sun4/os/
H A Dmlsetup.c151 t0.t_schedflag = TS_LOAD | TS_DONT_SWAP; in mlsetup()
/illumos-gate/usr/src/uts/common/sys/
H A Dthread.h415 #define TS_LOAD 0x0001 /* thread is in memory */ macro