Home
last modified time | relevance | path

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

/dports/editors/emacs/emacs-27.2/src/
H A Dsysthread.c304 cond->events[CONDV_BROADCAST] = CreateEvent (NULL, TRUE, FALSE, NULL); in sys_cond_init()
305 if (!cond->events[CONDV_SIGNAL] || !cond->events[CONDV_BROADCAST]) in sys_cond_init()
335 wait_result == WAIT_OBJECT_0 + CONDV_BROADCAST in sys_cond_wait()
342 ResetEvent (cond->events[CONDV_BROADCAST]); in sys_cond_wait()
377 SetEvent (cond->events[CONDV_BROADCAST]); in sys_cond_broadcast()
385 if (cond->events[CONDV_BROADCAST]) in sys_cond_destroy()
386 CloseHandle (cond->events[CONDV_BROADCAST]); in sys_cond_destroy()
H A Dsysthread.h64 enum { CONDV_SIGNAL = 0, CONDV_BROADCAST = 1, CONDV_MAX = 2 }; enumerator
/dports/editors/emacs-devel/emacs-4d1968b/src/
H A Dsysthread.c312 cond->events[CONDV_BROADCAST] = CreateEvent (NULL, TRUE, FALSE, NULL); in sys_cond_init()
313 if (!cond->events[CONDV_SIGNAL] || !cond->events[CONDV_BROADCAST]) in sys_cond_init()
343 wait_result == WAIT_OBJECT_0 + CONDV_BROADCAST in sys_cond_wait()
350 ResetEvent (cond->events[CONDV_BROADCAST]); in sys_cond_wait()
385 SetEvent (cond->events[CONDV_BROADCAST]); in sys_cond_broadcast()
393 if (cond->events[CONDV_BROADCAST]) in sys_cond_destroy()
394 CloseHandle (cond->events[CONDV_BROADCAST]); in sys_cond_destroy()
H A Dsysthread.h58 enum { CONDV_SIGNAL = 0, CONDV_BROADCAST = 1, CONDV_MAX = 2 }; enumerator