Searched refs:sem_ (Results 1 – 1 of 1) sorted by relevance
539 static int uv__custom_sem_init(uv_sem_t* sem_, unsigned int value) { in uv__custom_sem_init() argument559 *(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() argument567 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() argument577 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() argument589 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() argument601 sem = *(uv_semaphore_t**)sem_; in uv__custom_sem_trywait()
Completed in 5 milliseconds