Home
last modified time | relevance | path

Searched refs:timeo_cond (Results 1 – 2 of 2) sorted by relevance

/external/usrsctp/usrsctplib/
Duser_socketvar.h156 userland_cond_t timeo_cond; /* timeo_cond condition variable being used in wakeup */ member
281 #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)
Duser_socket.c398 WakeAllConditionVariable(&(so)->timeo_cond); in wakeup()
400 pthread_cond_broadcast(&(so)->timeo_cond); in wakeup()