#ifndef _SYS_CONDVAR_H
#define _SYS_CONDVAR_H
#ifndef _ASM
#include <sys/types.h>
#include <sys/time.h>
#ifdef _KERNEL
#include <sys/mutex.h>
#endif
#endif
#ifdef __cplusplus
extern "C" {
#endif
#ifndef _ASM
typedef struct _kcondvar {
ushort_t _opaque;
} kcondvar_t;
typedef enum {
CV_DEFAULT,
CV_DRIVER
} kcv_type_t;
#if defined(_KERNEL)
typedef enum {
TR_NANOSEC,
TR_MICROSEC,
TR_MILLISEC,
TR_SEC,
TR_CLOCK_TICK,
TR_COUNT
} time_res_t;
extern time_res_t time_res[];
#define TIME_RES_VALID(tr) (tr >= TR_NANOSEC && tr < TR_COUNT)
extern void cv_init(kcondvar_t *, char *, kcv_type_t, void *);
extern void cv_destroy(kcondvar_t *);
extern void cv_wait(kcondvar_t *, kmutex_t *);
extern void cv_wait_stop(kcondvar_t *, kmutex_t *, int);
extern clock_t cv_timedwait(kcondvar_t *, kmutex_t *, clock_t);
extern clock_t cv_timedwait_hires(kcondvar_t *, kmutex_t *, hrtime_t, hrtime_t,
int);
extern clock_t cv_reltimedwait(kcondvar_t *, kmutex_t *, clock_t, time_res_t);
extern int cv_wait_sig(kcondvar_t *, kmutex_t *);
extern clock_t cv_timedwait_sig(kcondvar_t *, kmutex_t *, clock_t);
extern int cv_timedwait_sig_hrtime(kcondvar_t *, kmutex_t *, hrtime_t);
extern clock_t cv_reltimedwait_sig(kcondvar_t *, kmutex_t *, clock_t,
time_res_t);
extern int cv_wait_sig_swap(kcondvar_t *, kmutex_t *);
extern int cv_wait_sig_swap_core(kcondvar_t *, kmutex_t *, int *);
extern void cv_signal(kcondvar_t *);
extern void cv_broadcast(kcondvar_t *);
extern int cv_waituntil_sig(kcondvar_t *, kmutex_t *, timestruc_t *, int);
#endif
#endif
#ifdef __cplusplus
}
#endif
#endif