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

  /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...]

Completed in 12 milliseconds