Searched refs:thread_params (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/base/threading/
H A Dplatform_thread_posix.cc59 ThreadParams* thread_params = static_cast<ThreadParams*>(params); local
61 PlatformThread::Delegate* delegate = thread_params->delegate;
62 if (!thread_params->joinable)
65 if (thread_params->priority != kThreadPriority_Normal) {
67 thread_params->priority);
72 *(thread_params->handle) = PlatformThreadHandle(pthread_self(),
74 thread_params->handle_set.Signal();
H A Dplatform_thread_win.cc52 ThreadParams* thread_params = static_cast<ThreadParams*>(params); local
53 PlatformThread::Delegate* delegate = thread_params->delegate;
54 if (!thread_params->joinable)
77 delete thread_params;

Completed in 813 milliseconds