Home
last modified time | relevance | path

Searched refs:ONCE_CONTROL (Results 1 – 2 of 2) sorted by relevance

/third_party/selinux/libselinux/src/
Dselinux_internal.h15 #define __selinux_once(ONCE_CONTROL, INIT_FUNCTION) \ argument
18 pthread_once (&(ONCE_CONTROL), (INIT_FUNCTION)); \
19 else if ((ONCE_CONTROL) == PTHREAD_ONCE_INIT) { \
21 (ONCE_CONTROL) = 2; \
/third_party/gettext/gettext-runtime/intl/
Dlock.h193 # define glthread_once(ONCE_CONTROL, INITFUNCTION) \ argument
194 (call_once (ONCE_CONTROL, INITFUNCTION), 0)
509 # define glthread_once(ONCE_CONTROL, INITFUNCTION) \ argument
511 ? pthread_once (ONCE_CONTROL, INITFUNCTION) \
512 : (glthread_once_singlethreaded (ONCE_CONTROL) ? (INITFUNCTION (), 0) : 0))
514 # define glthread_once(ONCE_CONTROL, INITFUNCTION) \ argument
516 ? glthread_once_multithreaded (ONCE_CONTROL, INITFUNCTION) \
517 : (glthread_once_singlethreaded (ONCE_CONTROL) ? (INITFUNCTION (), 0) : 0))
617 # define glthread_once(ONCE_CONTROL, INITFUNCTION) \ argument
618 (glwthread_once (ONCE_CONTROL, INITFUNCTION), 0)
[all …]