Lines Matching refs:tdp
314 sc_shared_t *tdp = t->t_schedctl; in schedctl_set_cidpri() local
316 if (tdp != NULL) { in schedctl_set_cidpri()
317 tdp->sc_cid = t->t_cid; in schedctl_set_cidpri()
318 tdp->sc_cpri = t->t_cpri; in schedctl_set_cidpri()
319 tdp->sc_priority = DISP_PRIO(t); in schedctl_set_cidpri()
333 sc_shared_t *tdp = t->t_schedctl; in schedctl_sigblock() local
335 if (tdp != NULL) in schedctl_sigblock()
336 return (tdp->sc_sigblock); in schedctl_sigblock()
357 sc_shared_t *tdp = t->t_schedctl; in schedctl_finish_sigblock() local
361 if (tdp != NULL && tdp->sc_sigblock) { in schedctl_finish_sigblock()
365 tdp->sc_sigblock = 0; in schedctl_finish_sigblock()
379 sc_shared_t *tdp = curthread->t_schedctl; in schedctl_cancel_pending() local
381 if (tdp != NULL && in schedctl_cancel_pending()
382 (tdp->sc_flgs & SC_CANCEL_FLG) && in schedctl_cancel_pending()
383 !tdp->sc_sigblock && in schedctl_cancel_pending()
401 sc_shared_t *tdp = curthread->t_schedctl; in schedctl_cancel_eintr() local
403 if (tdp != NULL) in schedctl_cancel_eintr()
404 tdp->sc_flgs |= SC_EINTR_FLG; in schedctl_cancel_eintr()
415 sc_shared_t *tdp = curthread->t_schedctl; in schedctl_is_park() local
417 if (tdp != NULL) in schedctl_is_park()
418 return ((tdp->sc_flgs & SC_PARK_FLG) != 0); in schedctl_is_park()
444 sc_shared_t *tdp = curthread->t_schedctl; in schedctl_set_park() local
445 if (tdp != NULL) in schedctl_set_park()
446 tdp->sc_flgs |= SC_PARK_FLG; in schedctl_set_park()
456 sc_shared_t *tdp = curthread->t_schedctl; in schedctl_unpark() local
458 if (tdp != NULL) in schedctl_unpark()
459 tdp->sc_flgs &= ~SC_PARK_FLG; in schedctl_unpark()