Home
last modified time | relevance | path

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

/netbsd-src/external/mit/libuv/dist/src/unix/
H A Dthread.c546 static int uv__custom_sem_init(uv_sem_t* sem_, unsigned int value) { in uv__custom_sem_init() argument
566 *(uv_semaphore_t**)sem_ = sem; in uv__custom_sem_init()
571 static void uv__custom_sem_destroy(uv_sem_t* sem_) { in uv__custom_sem_destroy() argument
574 sem = *(uv_semaphore_t**)sem_; in uv__custom_sem_destroy()
581 static void uv__custom_sem_post(uv_sem_t* sem_) { in uv__custom_sem_post() argument
584 sem = *(uv_semaphore_t**)sem_; in uv__custom_sem_post()
593 static void uv__custom_sem_wait(uv_sem_t* sem_) { in uv__custom_sem_wait() argument
596 sem = *(uv_semaphore_t**)sem_; in uv__custom_sem_wait()
605 static int uv__custom_sem_trywait(uv_sem_t* sem_) { in uv__custom_sem_trywait() argument
608 sem = *(uv_semaphore_t**)sem_; in uv__custom_sem_trywait()