Searched refs:_objc_thread_storage (Results 1 - 5 of 5) sorted by relevance

/freebsd-9.3-release/contrib/gcc/
H A Dgthr-nks.h64 static NXKey_t _objc_thread_storage; variable
73 if (NXKeyCreate (NULL, NULL, &_objc_thread_storage) == 0)
82 if (NXKeyDelete (_objc_thread_storage) == 0)
159 return NXKeySetValue (_objc_thread_storage, value);
168 if (NXKeyGetValue (_objc_thread_storage, &value) == 0)
H A Dgthr-dce.h124 static pthread_key_t _objc_thread_storage; variable
137 return __gthrw_(pthread_keycreate) (&_objc_thread_storage, NULL);
273 return __gthrw_(pthread_setspecific) (_objc_thread_storage, value);
289 if (!(__gthrw_(pthread_getspecific) (_objc_thread_storage, &value)))
H A Dgthr-solaris.h125 static thread_key_t _objc_thread_storage; variable
138 && __gthrw_(thr_keycreate) (&_objc_thread_storage, NULL) == 0)
264 if (__gthrw_(thr_setspecific) (_objc_thread_storage, value) == 0)
284 if (__gthrw_(thr_getspecific) (_objc_thread_storage, &value) == 0)
H A Dgthr-posix.h235 static pthread_key_t _objc_thread_storage; variable
250 if (__gthrw_(pthread_key_create) (&_objc_thread_storage, NULL) == 0)
270 && __gthrw_(pthread_key_delete) (_objc_thread_storage) == 0
397 return __gthrw_(pthread_setspecific) (_objc_thread_storage, value);
410 return __gthrw_(pthread_getspecific) (_objc_thread_storage);
H A Dgthr-posix95.h195 static pthread_key_t _objc_thread_storage; variable
210 if (__gthrw_(pthread_key_create) (&_objc_thread_storage, NULL) == 0)
230 && __gthrw_(pthread_key_delete) (_objc_thread_storage) == 0
357 return __gthrw_(pthread_setspecific) (_objc_thread_storage, value);
370 return __gthrw_(pthread_getspecific) (_objc_thread_storage);

Completed in 197 milliseconds