Lines Matching defs:psem
26 #define sem_post(psem) dispatch_semaphore_signal(*psem)
27 #define sem_wait(psem) dispatch_semaphore_wait(*psem, DISPATCH_TIME_FOREVER)
28 #define sem_timedwait(psem, val) dispatch_semaphore_wait(*psem, dispatch_walltime(val, 0))
29 #define sem_destroy(psem) dispatch_release(*psem)
31 static inline int compat_sem_init(dispatch_semaphore_t *psem,
34 int ret = !!(*psem = dispatch_semaphore_create(val)) - 1;