Skip to main content

apr_queue_pop

Function apr_queue_pop 

Source
pub unsafe extern "C" fn apr_queue_pop(
    queue: *mut apr_queue_t,
    data: *mut *mut c_void,
) -> apr_status_t
Expand description

pop/get an object from the queue, blocking if the queue is already empty

@param queue the queue @param data the data @returns APR_EINTR the blocking was interrupted (try again) @returns APR_EOF if the queue has been terminated @returns APR_SUCCESS on a successful pop