Searched refs:threadH (Results 1 – 10 of 10) sorted by relevance
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/ |
D | create.c | 89 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 …]
|
D | pthread_cancel.c | 63 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()
|
D | pthread_self.c | 108 sp->threadH = GetCurrentThread (); in pthread_self() 113 &sp->threadH, in pthread_self() 134 sp->sched_priority = GetThreadPriority (sp->threadH); in pthread_self()
|
D | ptw32_threadDestroy.c | 71 if (threadCopy.threadH != 0) in ptw32_threadDestroy() 73 CloseHandle (threadCopy.threadH); in ptw32_threadDestroy()
|
D | pthread_getw32threadhandle_np.c | 52 return ((ptw32_thread_t *)thread.p)->threadH; in pthread_getw32threadhandle_np()
|
D | pthread_kill.c | 88 || NULL == tp->threadH) in pthread_kill()
|
D | pthread_detach.c | 129 (void) WaitForSingleObject(tp->threadH, INFINITE); in pthread_detach()
|
D | pthread_join.c | 132 result = pthreadCancelableWait (tp->threadH); in pthread_join()
|
D | pthread_setschedparam.c | 107 if (0 == SetThreadPriority (tp->threadH, prio)) in ptw32_setthreadpriority()
|
D | implement.h | 158 HANDLE threadH; /* Win32 thread handle - POSIX thread is invalid if threadH == 0 */ member 630 HANDLE threadH, DWORD callback_arg);
|