Lines Matching refs:tdp
302 sc_shared_t *tdp = t->t_schedctl; in schedctl_set_cidpri() local
304 if (tdp != NULL) { in schedctl_set_cidpri()
305 tdp->sc_cid = t->t_cid; in schedctl_set_cidpri()
306 tdp->sc_cpri = t->t_cpri; in schedctl_set_cidpri()
307 tdp->sc_priority = DISP_PRIO(t); in schedctl_set_cidpri()
321 sc_shared_t *tdp = t->t_schedctl; in schedctl_sigblock() local
323 if (tdp != NULL) in schedctl_sigblock()
324 return (tdp->sc_sigblock); in schedctl_sigblock()
340 sc_shared_t *tdp = t->t_schedctl; in schedctl_finish_sigblock() local
344 if (tdp != NULL && tdp->sc_sigblock) { in schedctl_finish_sigblock()
348 tdp->sc_sigblock = 0; in schedctl_finish_sigblock()
362 sc_shared_t *tdp = curthread->t_schedctl; in schedctl_cancel_pending() local
364 if (tdp != NULL && in schedctl_cancel_pending()
365 (tdp->sc_flgs & SC_CANCEL_FLG) && in schedctl_cancel_pending()
366 !tdp->sc_sigblock && in schedctl_cancel_pending()
384 sc_shared_t *tdp = curthread->t_schedctl; in schedctl_cancel_eintr() local
386 if (tdp != NULL) in schedctl_cancel_eintr()
387 tdp->sc_flgs |= SC_EINTR_FLG; in schedctl_cancel_eintr()
398 sc_shared_t *tdp = curthread->t_schedctl; in schedctl_is_park() local
400 if (tdp != NULL) in schedctl_is_park()
401 return ((tdp->sc_flgs & SC_PARK_FLG) != 0); in schedctl_is_park()
427 sc_shared_t *tdp = curthread->t_schedctl; in schedctl_set_park() local
428 if (tdp != NULL) in schedctl_set_park()
429 tdp->sc_flgs |= SC_PARK_FLG; in schedctl_set_park()
439 sc_shared_t *tdp = curthread->t_schedctl; in schedctl_unpark() local
441 if (tdp != NULL) in schedctl_unpark()
442 tdp->sc_flgs &= ~SC_PARK_FLG; in schedctl_unpark()