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

  /external/chromium_org/third_party/usrsctp/usrsctplib/
user_socketvar.h 239 extern userland_mutex_t accept_mtx;
243 EnterCriticalSection(&accept_mtx); \
246 LeaveCriticalSection(&accept_mtx); \
250 extern userland_mutex_t accept_mtx;
252 #define ACCEPT_LOCK_ASSERT() KASSERT(pthread_mutex_trylock(&accept_mtx) == EBUSY, ("%s: accept_mtx not locked", __func__))
253 #define ACCEPT_LOCK() (void)pthread_mutex_lock(&accept_mtx)
254 #define ACCEPT_UNLOCK() (void)pthread_mutex_unlock(&accept_mtx)
256 KASSERT(pthread_mutex_trylock(&accept_mtx) == 0, ("%s: accept_mtx locked", __func__));
    [all...]
user_socket.c 56 userland_mutex_t accept_mtx; variable
    [all...]
  /external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
sctp_usrreq.c 100 InitializeCriticalSection(&accept_mtx);
103 pthread_mutex_init(&accept_mtx, NULL);
254 DeleteCriticalSection(&accept_mtx);
257 pthread_mutex_destroy(&accept_mtx);
    [all...]

Completed in 30 milliseconds