Searched refs:sem_ (Results 1 – 1 of 1) sorted by relevance
560 static int uv__custom_sem_init(uv_sem_t* sem_, unsigned int value) { in uv__custom_sem_init() argument580 *(uv_semaphore_t**)sem_ = sem; in uv__custom_sem_init()585 static void uv__custom_sem_destroy(uv_sem_t* sem_) { in uv__custom_sem_destroy() argument588 sem = *(uv_semaphore_t**)sem_; in uv__custom_sem_destroy()595 static void uv__custom_sem_post(uv_sem_t* sem_) { in uv__custom_sem_post() argument598 sem = *(uv_semaphore_t**)sem_; in uv__custom_sem_post()607 static void uv__custom_sem_wait(uv_sem_t* sem_) { in uv__custom_sem_wait() argument610 sem = *(uv_semaphore_t**)sem_; in uv__custom_sem_wait()619 static int uv__custom_sem_trywait(uv_sem_t* sem_) { in uv__custom_sem_trywait() argument622 sem = *(uv_semaphore_t**)sem_; in uv__custom_sem_trywait()
Completed in 7 milliseconds