HomeSort by: relevance | last modified time | path
    Searched refs:kcondvar_t (Results 1 - 25 of 312) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/sys/
condvar.h 37 } kcondvar_t; typedef in typeref:struct:kcondvar
45 void cv_init(kcondvar_t *, const char *);
46 void cv_destroy(kcondvar_t *);
48 void cv_wait(kcondvar_t *, struct kmutex *);
49 int cv_wait_sig(kcondvar_t *, struct kmutex *);
50 int cv_timedwait(kcondvar_t *, struct kmutex *, int);
51 int cv_timedwait_sig(kcondvar_t *, struct kmutex *, int);
52 int cv_timedwaitbt(kcondvar_t *, struct kmutex *, struct bintime *,
54 int cv_timedwaitbt_sig(kcondvar_t *, struct kmutex *, struct bintime *,
57 void cv_signal(kcondvar_t *);
    [all...]
pipe.h 92 kcondvar_t pipe_rcv; /* cv for readers */
93 kcondvar_t pipe_wcv; /* cv for writers */
94 kcondvar_t pipe_draincv; /* cv for close */
95 kcondvar_t pipe_lkcv; /* locking */
callback.h 44 kcondvar_t ch_cv;
eventvar.h 53 kcondvar_t kq_cv;
  /src/sys/rump/include/sys/
sleeptab.h 35 kcondvar_t sq_cv;
  /src/sys/dev/pud/
pud_sys.h 41 kcondvar_t pt_cv;
53 kcondvar_t pd_waitq_req_cv;
56 kcondvar_t pd_draincv;
  /src/sys/dev/ic/
dwiic_var.h 52 kcondvar_t sc_int_readwait;
53 kcondvar_t sc_int_writewait;
54 kcondvar_t sc_int_stopwait;
scmdvar.h 31 kcondvar_t sc_condvar;
32 kcondvar_t sc_cond_dying; /* interlock when cleaning up */
pl181var.h 41 kcondvar_t sc_intr_cv;
  /src/sys/ufs/mfs/
mfsnode.h 48 kcondvar_t mfs_cv; /* notifier */
  /src/sys/kern/
kern_condvar.c 52 * Accessors for the private contents of the kcondvar_t data type.
72 static inline void cv_wakeup_one(kcondvar_t *);
73 static inline void cv_wakeup_all(kcondvar_t *);
93 cv_init(kcondvar_t *cv, const char *wmesg)
107 cv_destroy(kcondvar_t *cv)
125 cv_enter(kcondvar_t *cv, kmutex_t *mtx, lwp_t *l, bool catch_p)
155 kcondvar_t *cv __diagused;
157 cv = (kcondvar_t *)(uintptr_t)l->l_wchan;
173 cv_wait(kcondvar_t *cv, kmutex_t *mtx)
194 cv_wait_sig(kcondvar_t *cv, kmutex_t *mtx
    [all...]
  /src/sys/arch/x68k/dev/
event_var.h 61 kcondvar_t ev_cv; /* condvar(9) to delever signal */
  /src/sys/dev/flash/
flash_io.h 14 kcondvar_t fio_cv;
  /src/sys/dev/i2c/
am2315var.h 35 kcondvar_t sc_condwait;
sht3xvar.h 39 kcondvar_t sc_condvar; /* for shutting down the thread */
40 kcondvar_t sc_condreadready; /* when there is data to be read */
41 kcondvar_t sc_cond_dying; /* interlock when cleaning up */
hytp14var.h 60 kcondvar_t sc_condvar;
sgp40var.h 36 kcondvar_t sc_condvar;
  /src/sys/dev/isa/
pcppivar.h 51 kcondvar_t sc_slp;
  /src/sys/dev/wscons/
wsbellvar.h 52 kcondvar_t sc_bellcv;
  /src/sys/rump/librump/rumpkern/
locks_up.c 328 cv_init(kcondvar_t *cv, const char *msg)
331 CTASSERT(sizeof(kcondvar_t) >= sizeof(void *));
338 cv_destroy(kcondvar_t *cv)
345 cv_wait(kcondvar_t *cv, kmutex_t *mtx)
366 cv_wait_sig(kcondvar_t *cv, kmutex_t *mtx)
374 cv_timedwait(kcondvar_t *cv, kmutex_t *mtx, int ticks)
402 cv_timedwait_sig(kcondvar_t *cv, kmutex_t *mtx, int ticks)
409 cv_signal(kcondvar_t *cv)
417 cv_broadcast(kcondvar_t *cv)
425 cv_has_waiters(kcondvar_t *cv
    [all...]
  /src/sys/dev/
sequencervar.h 78 kcondvar_t wchan;
79 kcondvar_t rchan;
80 kcondvar_t lchan;
  /src/sys/external/bsd/common/include/linux/
srcu.h 53 kcondvar_t srcu_cv;
  /src/sys/external/bsd/drm2/include/linux/
rwsem.h 67 kcondvar_t rws_cv;
  /src/sys/dev/pad/
padvar.h 46 kcondvar_t sc_condvar;
  /src/sys/nfs/
nfsmount.h 132 kcondvar_t nm_rcvcv;
133 kcondvar_t nm_sndcv;
169 kcondvar_t nm_aiocv;
174 kcondvar_t nm_disconcv;

Completed in 20 milliseconds

1 2 3 4 5 6 7 8 91011>>