HomeSort by relevance Sort by last modified time
    Searched refs:threadH (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_cancel.c 63 ptw32_RegisterCancelation (PAPCFUNC unused1, HANDLE threadH, DWORD unused2)
68 GetThreadContext (threadH, &context);
70 SetThreadContext (threadH, &context);
147 HANDLE threadH = tp->threadH;
149 SuspendThread (threadH);
151 if (WaitForSingleObject (threadH, 0) == WAIT_TIMEOUT)
159 * the threadH arg will be used.
161 ptw32_register_cancelation ((PAPCFUNC)ptw32_cancel_callback, threadH, 0);
163 ResumeThread (threadH);
    [all...]
create.c 89 HANDLE threadH = 0;
199 * by us in case thread.p->threadH gets NULLed later but before we've
205 tp->threadH =
206 threadH =
215 if (threadH != 0)
224 ResumeThread (threadH);
239 tp->threadH =
240 threadH =
247 if (threadH == (HANDLE) - 1L)
249 tp->threadH = threadH = 0
    [all...]
pthread_getw32threadhandle_np.c 52 return ((ptw32_thread_t *)thread.p)->threadH;
ptw32_threadDestroy.c 71 if (threadCopy.threadH != 0)
73 CloseHandle (threadCopy.threadH);
pthread_self.c 108 sp->threadH = GetCurrentThread ();
113 &sp->threadH,
134 sp->sched_priority = GetThreadPriority (sp->threadH);
pthread_kill.c 88 || NULL == tp->threadH)
pthread_detach.c 129 (void) WaitForSingleObject(tp->threadH, INFINITE);
pthread_join.c 132 result = pthreadCancelableWait (tp->threadH);
pthread_setschedparam.c 107 if (0 == SetThreadPriority (tp->threadH, prio))
implement.h 158 HANDLE threadH; /* Win32 thread handle - POSIX thread is invalid if threadH == 0 */
630 HANDLE threadH, DWORD callback_arg);
    [all...]

Completed in 66 milliseconds