Lines Matching refs:tdp
302 sc_shared_t *tdp = t->t_schedctl;
304 if (tdp != NULL) {
305 tdp->sc_cid = t->t_cid;
306 tdp->sc_cpri = t->t_cpri;
307 tdp->sc_priority = DISP_PRIO(t);
321 sc_shared_t *tdp = t->t_schedctl;
323 if (tdp != NULL)
324 return (tdp->sc_sigblock);
333 * to be done when it set tdp->sc_shared->sc_sigblock non-zero.
340 sc_shared_t *tdp = t->t_schedctl;
344 if (tdp != NULL && tdp->sc_sigblock) {
348 tdp->sc_sigblock = 0;
362 sc_shared_t *tdp = curthread->t_schedctl;
364 if (tdp != NULL &&
365 (tdp->sc_flgs & SC_CANCEL_FLG) &&
366 !tdp->sc_sigblock &&
384 sc_shared_t *tdp = curthread->t_schedctl;
386 if (tdp != NULL)
387 tdp->sc_flgs |= SC_EINTR_FLG;
398 sc_shared_t *tdp = curthread->t_schedctl;
400 if (tdp != NULL)
401 return ((tdp->sc_flgs & SC_PARK_FLG) != 0);
427 sc_shared_t *tdp = curthread->t_schedctl;
428 if (tdp != NULL)
429 tdp->sc_flgs |= SC_PARK_FLG;
439 sc_shared_t *tdp = curthread->t_schedctl;
441 if (tdp != NULL)
442 tdp->sc_flgs &= ~SC_PARK_FLG;