Lines Matching defs:thread
28 #include <thread>
375 std::vector<std::thread*> threads;
383 std::thread* thread = new std::thread([i, this, &wait, &info, &elf_in_threads]() {
389 threads.push_back(thread);
395 for (auto thread : threads) {
396 thread->join();
397 delete thread;
405 EXPECT_EQ(elf, elf_in_threads[i]) << "Thread " << i << " mismatched.";