Home
last modified time | relevance | path

Searched refs:threadH (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
Dcreate.c89 HANDLE threadH = 0; in pthread_create() local
205 tp->threadH = in pthread_create()
206 threadH = in pthread_create()
215 if (threadH != 0) in pthread_create()
224 ResumeThread (threadH); in pthread_create()
239 tp->threadH = in pthread_create()
240 threadH = in pthread_create()
247 if (threadH == (HANDLE) - 1L) in pthread_create()
249 tp->threadH = threadH = 0; in pthread_create()
260 SuspendThread (threadH); in pthread_create()
[all …]
Dpthread_cancel.c63 ptw32_RegisterCancelation (PAPCFUNC unused1, HANDLE threadH, DWORD unused2) in ptw32_RegisterCancelation() argument
68 GetThreadContext (threadH, &context); in ptw32_RegisterCancelation()
70 SetThreadContext (threadH, &context); in ptw32_RegisterCancelation()
147 HANDLE threadH = tp->threadH; in pthread_cancel() local
149 SuspendThread (threadH); in pthread_cancel()
151 if (WaitForSingleObject (threadH, 0) == WAIT_TIMEOUT) in pthread_cancel()
161 ptw32_register_cancelation ((PAPCFUNC)ptw32_cancel_callback, threadH, 0); in pthread_cancel()
163 ResumeThread (threadH); in pthread_cancel()
Dpthread_self.c108 sp->threadH = GetCurrentThread (); in pthread_self()
113 &sp->threadH, in pthread_self()
134 sp->sched_priority = GetThreadPriority (sp->threadH); in pthread_self()
Dptw32_threadDestroy.c71 if (threadCopy.threadH != 0) in ptw32_threadDestroy()
73 CloseHandle (threadCopy.threadH); in ptw32_threadDestroy()
Dpthread_getw32threadhandle_np.c52 return ((ptw32_thread_t *)thread.p)->threadH; in pthread_getw32threadhandle_np()
Dpthread_kill.c88 || NULL == tp->threadH) in pthread_kill()
Dpthread_detach.c129 (void) WaitForSingleObject(tp->threadH, INFINITE); in pthread_detach()
Dpthread_join.c132 result = pthreadCancelableWait (tp->threadH); in pthread_join()
Dpthread_setschedparam.c107 if (0 == SetThreadPriority (tp->threadH, prio)) in ptw32_setthreadpriority()
Dimplement.h158 HANDLE threadH; /* Win32 thread handle - POSIX thread is invalid if threadH == 0 */ member
630 HANDLE threadH, DWORD callback_arg);