Searched refs:shnd (Results 1 – 2 of 2) sorted by relevance
74 # define tickle_sem(sh) ReleaseSemaphore((sh->shnd), 1, NULL)411 return obj && osh && (obj->shnd == (HANDLE)osh); in same_os_sema()517 (*addremove_io_semaphore)(c->responses_pending->shnd, FALSE); in start_blocking_thread_internal()701 semptr->shnd = CreateSemaphore(NULL, svini, svmax, NULL); in create_sema()702 if (NULL == semptr->shnd) in create_sema()726 if (obj->shnd) in delete_sema()727 CloseHandle(obj->shnd); in delete_sema()728 obj->shnd = NULL; in delete_sema()792 if (!(sem && sem->shnd)) { in wait_for_sem()811 rc = WaitForSingleObject(sem->shnd, msec); in wait_for_sem()[all …]
48 typedef struct { HANDLE shnd; } sema_type; member