Home
last modified time | relevance | path

Searched refs:pthread_once_t (Results 1 – 6 of 6) sorted by relevance

/Zephyr-latest/lib/libc/common/source/thrd/
Donce.c15 (void)pthread_once((pthread_once_t *)flag, func); in call_once()
/Zephyr-latest/include/zephyr/posix/
Dposix_types.h149 typedef struct pthread_once pthread_once_t; typedef
151 BUILD_ASSERT(sizeof(pthread_once_t) >= sizeof(struct pthread_once));
Dpthread.h429 int pthread_once(pthread_once_t *once, void (*initFunc)(void));
/Zephyr-latest/tests/posix/common/src/
Dkey.c18 static pthread_once_t key_once = PTHREAD_ONCE_INIT;
19 static pthread_once_t keys_once = PTHREAD_ONCE_INIT;
/Zephyr-latest/tests/posix/headers/src/
Dpthread_h.c46 __unused pthread_once_t once = PTHREAD_ONCE_INIT; in ZTEST()
/Zephyr-latest/lib/posix/options/
Dpthread.c1012 int pthread_once(pthread_once_t *once, void (*init_func)(void)) in pthread_once()