Go to the documentation of this file.
17 #ifndef APR_THREAD_COND_H
18 #define APR_THREAD_COND_H
35 #if APR_HAS_THREADS || defined(DOXYGEN)
apr_status_t apr_thread_cond_wait(apr_thread_cond_t *cond, apr_thread_mutex_t *mutex)
struct apr_thread_mutex_t apr_thread_mutex_t
Definition: apr_thread_mutex.h:41
apr_status_t apr_thread_cond_broadcast(apr_thread_cond_t *cond)
apr_status_t apr_thread_cond_timedwait(apr_thread_cond_t *cond, apr_thread_mutex_t *mutex, apr_interval_time_t timeout)
apr_int64_t apr_interval_time_t
Definition: apr_time.h:55
APR Platform Definitions.
apr_status_t apr_thread_cond_create(apr_thread_cond_t **cond, apr_pool_t *pool)
apr_status_t apr_thread_cond_destroy(apr_thread_cond_t *cond)
struct apr_thread_cond_t apr_thread_cond_t
Definition: apr_thread_cond.h:44
int apr_status_t
Definition: apr_errno.h:44
#define APR_POOL_DECLARE_ACCESSOR(type)
Definition: apr_pools.h:81
apr_status_t apr_thread_cond_signal(apr_thread_cond_t *cond)
struct apr_pool_t apr_pool_t
Definition: apr_pools.h:60
APR Thread Mutex Routines.