evthread_condition_callbacks.wait_condition

Function to wait for a condition variable. The lock 'lock' * will be held when this function is called; should be released * while waiting for the condition to be come signalled, and * should be held again when this function returns. * If timeout is provided, it is interval of seconds to wait for * the event to become signalled; if it is NULL, the function * should wait indefinitely. * * The function should return -1 on error; 0 if the condition * was signalled, or 1 on a timeout.

struct evthread_condition_callbacks
ExternC!(int function(void* cond, void* lock, const(timeval)* timeout)) wait_condition;

Meta