HomeSort by relevance Sort by last modified time
    Searched refs:timeo_cond (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/usrsctp/usrsctplib/
user_socketvar.h 154 userland_cond_t timeo_cond; /* timeo_cond condition variable being used in wakeup */ member in struct:socket
272 #define SOCK_COND_INIT(_so) InitializeConditionVariable((&(_so)->timeo_cond))
273 #define SOCK_COND_DESTROY(_so) DeleteConditionVariable((&(_so)->timeo_cond))
274 #define SOCK_COND(_so) (&(_so)->timeo_cond)
281 #define SOCK_COND_INIT(_so) pthread_cond_init((&(_so)->timeo_cond), NULL)
282 #define SOCK_COND_DESTROY(_so) pthread_cond_destroy((&(_so)->timeo_cond))
283 #define SOCK_COND(_so) (&(_so)->timeo_cond)
user_socket.c 185 SOCK_COND_INIT(so); /* timeo_cond */
352 * Associating wakeup with so_timeo identifier and timeo_cond
364 WakeAllConditionVariable(&(so)->timeo_cond);
366 pthread_cond_broadcast(&(so)->timeo_cond);
    [all...]

Completed in 62 milliseconds