Searched refs:timeo_cond (Results 1 – 2 of 2) sorted by relevance
156 userland_cond_t timeo_cond; /* timeo_cond condition variable being used in wakeup */ member281 #define SOCK_COND_INIT(_so) InitializeConditionVariable((&(_so)->timeo_cond))282 #define SOCK_COND_DESTROY(_so) DeleteConditionVariable((&(_so)->timeo_cond))283 #define SOCK_COND(_so) (&(_so)->timeo_cond)301 #define SOCK_COND_INIT(_so) pthread_cond_init((&(_so)->timeo_cond), NULL)302 #define SOCK_COND_DESTROY(_so) pthread_cond_destroy((&(_so)->timeo_cond))303 #define SOCK_COND(_so) (&(_so)->timeo_cond)
387 WakeAllConditionVariable(&(so)->timeo_cond); in wakeup()389 pthread_cond_broadcast(&(so)->timeo_cond); in wakeup()