Searched refs:INITFUNCTION (Results 1 – 1 of 1) sorted by relevance
/third_party/gettext/gettext-runtime/intl/ |
D | lock.h | 193 # 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 …]
|