Home
last modified time | relevance | path

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

/libuv/src/unix/
H A Dthread.c539 static int uv__custom_sem_init(uv_sem_t* sem_, unsigned int value) { in uv__custom_sem_init() argument
559 *(uv_semaphore_t**)sem_ = sem; in uv__custom_sem_init()
564 static void uv__custom_sem_destroy(uv_sem_t* sem_) { in uv__custom_sem_destroy() argument
567 sem = *(uv_semaphore_t**)sem_; in uv__custom_sem_destroy()
574 static void uv__custom_sem_post(uv_sem_t* sem_) { in uv__custom_sem_post() argument
577 sem = *(uv_semaphore_t**)sem_; in uv__custom_sem_post()
586 static void uv__custom_sem_wait(uv_sem_t* sem_) { in uv__custom_sem_wait() argument
589 sem = *(uv_semaphore_t**)sem_; in uv__custom_sem_wait()
598 static int uv__custom_sem_trywait(uv_sem_t* sem_) { in uv__custom_sem_trywait() argument
601 sem = *(uv_semaphore_t**)sem_; in uv__custom_sem_trywait()

Completed in 6 milliseconds