Searched refs:new_thread_handle (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.1-release/contrib/gcc/
H A Dgthr-nks.h95 NXThreadId_t new_thread_handle; local
100 else if (NXThreadCreate (context, NX_THR_DETACHED, &new_thread_handle) == 0)
101 thread_id = (objc_thread_t) new_thread_handle;
H A Dgthr-dce.h159 pthread_t new_thread_handle; local
164 if (!(__gthrw_(pthread_create) (&new_thread_handle, pthread_attr_default,
168 thread_id = *(objc_thread_t *) &new_thread_handle;
169 pthread_detach (&new_thread_handle); /* Fully detach thread. */
H A Dgthr-posix.h284 pthread_t new_thread_handle; local
289 if (!(__gthrw_(pthread_create) (&new_thread_handle, NULL, (void *) func, arg)))
290 thread_id = (objc_thread_t) new_thread_handle;
H A Dgthr-posix95.h250 pthread_t new_thread_handle; local
255 if (!(__gthrw_(pthread_create) (&new_thread_handle, NULL, (void *) func, arg)))
256 thread_id = (objc_thread_t) new_thread_handle;

Completed in 86 milliseconds