Searched refs:pthread_once_t (Results 1 – 11 of 11) sorted by relevance
82 typedef .... pthread_once_t;
83 typedef volatile int pthread_once_t; typedef267 int pthread_once(pthread_once_t *once_control, void (*init_routine)(void));
72 static pthread_once_t _lockTable_once = PTHREAD_ONCE_INIT;
53 static pthread_once_t _res_once;
1563 static pthread_once_t _res_cache_once;
131 #define once_t pthread_once_t
478 static pthread_once_t malloc_init_once_ctl = PTHREAD_ONCE_INIT;
115 static pthread_once_t the_once = PTHREAD_ONCE_INIT;
237 static pthread_once_t __timer_table_once = PTHREAD_ONCE_INIT;
1899 int pthread_once( pthread_once_t* once_control, void (*init_routine)(void) ) in pthread_once()1902 volatile pthread_once_t* ocptr = once_control; in pthread_once()1904 pthread_once_t tmp = *ocptr; in pthread_once()
364 then the C library will keep the corresponding pthread_once_t mutex369 pthread_once_t. Unfortunately this requires tricky assembly code that