Searched refs:pthread_once (Results 1 – 10 of 10) sorted by relevance
/bionic/libc/netbsd/resolv/ |
D | res_state.c | 109 pthread_once( &_res_once, _res_init_key ); in _res_thread_get()
|
D | res_cache.c | 1443 pthread_once( &_res_cache_once, _res_cache_init ); in __get_res_cache()
|
/bionic/libc/stdio/ |
D | flockfile.c | 87 pthread_once( &_lockTable_once, lock_table_init ); in lock_table_lock()
|
/bionic/libc/ |
D | CAVEATS | 16 - pthread_once() doesn't support C++ exceptions thrown from the init function, or the init
|
/bionic/libc/docs/ |
D | OVERVIEW.TXT | 179 pthread_once(): 181 Do not call fork() within a callback provided to pthread_once(). Doing this 183 pthread_once(). 188 The current implementation of pthread_once() lacks the necessary support of 363 - If pthread_once() is called with a C++ callback that throws an exception, 365 locked. Any further call to pthread_once() will result in a deadlock.
|
/bionic/libc/include/ |
D | pthread.h | 267 int pthread_once(pthread_once_t *once_control, void (*init_routine)(void));
|
/bionic/libc/bionic/ |
D | stubs.c | 82 pthread_once(&the_once, __stubs_key_init); in __stubs_state()
|
D | malloc_debug_common.c | 493 if (pthread_once(&malloc_init_once_ctl, malloc_init_impl)) { in malloc_debug_init()
|
D | pthread-timers.c | 252 pthread_once( &__timer_table_once, __timer_table_init ); in __timer_table_get()
|
D | pthread.c | 1867 int pthread_once( pthread_once_t* once_control, void (*init_routine)(void) ) in pthread_once() function
|