Lines Matching defs:thread
24 #include <thread>
147 FFRT_LOGD("qos %d thread not joinable.", qos());
164 thread = std::thread(wrap, args...);
169 if (thread.joinable()) {
170 thread.join();
177 if (thread.joinable()) {
178 thread.detach();
180 FFRT_LOGD("qos %d thread not joinable\n", qos());
187 return this->thread.native_handle();
205 std::thread thread;
211 void SetThreadAttr(WorkerThread* thread, const QoS& qos);