Home
last modified time | relevance | path

Searched refs:pt_flags (Results 1 – 6 of 6) sorted by relevance

/netbsd/src/sys/kern/
Dtty_pty.c74 int pt_flags; member
439 if (pti->pt_flags & PF_REMOTE) { in ptsread()
532 if (pti->pt_flags & PF_STOPPED) { in ptsstart()
533 pti->pt_flags &= ~PF_STOPPED; in ptsstart()
559 pti->pt_flags |= PF_STOPPED; in ptsstop()
561 pti->pt_flags &= ~PF_STOPPED; in ptsstop()
623 pti->pt_flags = 0; in ptcopen()
665 if (pti->pt_flags & PF_PKT && (c = pti->pt_send)) { in ptcread()
685 if (pti->pt_flags & PF_UCNTL && (c = pti->pt_ucntl)) { in ptcread()
709 if (pti->pt_flags & (PF_PKT|PF_UCNTL)) { in ptcread()
[all …]
/netbsd/src/sys/arch/dreamcast/dev/maple/
Dmlcd.c115 int pt_flags; member
364 pt->pt_flags = MLCD_PT_OK; in mlcd_intr()
482 || part >= sc->sc_npt || (pt = &sc->sc_pt[part])->pt_flags == 0) in mlcdopen()
485 if (pt->pt_flags & MLCD_PT_OPEN) in mlcdopen()
488 pt->pt_flags |= MLCD_PT_OPEN; in mlcdopen()
506 pt->pt_flags &= ~MLCD_PT_OPEN; in mlcdclose()
621 || pt->pt_flags == 0) { in mlcd_buf_alloc()
Dmmemcard.c131 int pt_flags; member
366 if (sc->sc_pt[i].pt_flags & MMEM_PT_OK) { in mmemdetach()
448 pt->pt_flags = MMEM_PT_OK; in mmem_intr()
648 || part >= sc->sc_npt || (pt = &sc->sc_pt[part])->pt_flags == 0) in mmemopen()
703 || part >= sc->sc_npt || (pt = &sc->sc_pt[part])->pt_flags == 0) in mmemstrategy()
/netbsd/src/lib/libpthread/
Dpthread.c328 t->pt_flags = flags; in pthread__scrubthread()
544 if ((newthread->pt_flags & PT_FLAG_SUSPENDED) != 0 || in pthread_create()
547 if ((newthread->pt_flags & PT_FLAG_DETACHED) != 0) in pthread_create()
566 if ((newthread->pt_flags & PT_FLAG_SUSPENDED) == 0) { in pthread_create()
685 if (self->pt_flags & PT_FLAG_DETACHED) { in pthread_exit()
793 if ((thread->pt_flags & PT_FLAG_DETACHED) != 0) { in pthread_detach()
798 thread->pt_flags |= PT_FLAG_DETACHED; in pthread_detach()
Dpthread_int.h98 int pt_flags; /* see PT_FLAG_* below */ member
Dpthread_attr.c116 attr->pta_flags = thread->pt_flags & in pthread_attr_get_np()