Skip to main content

apr_thread_cond_create

Function apr_thread_cond_create 

Source
pub unsafe extern "C" fn apr_thread_cond_create(
    cond: *mut *mut apr_thread_cond_t,
    pool: *mut apr_pool_t,
) -> apr_status_t
Expand description

Create and initialize a condition variable that can be used to signal and schedule threads in a single process. @param cond the memory address where the newly created condition variable will be stored. @param pool the pool from which to allocate the condition.