Home | History | Annotate | Download | only in tests

Lines Matching defs:thread

31 #include <thread>
219 std::thread thread([&]() {
249 ASSERT_TRUE(ucontext != nullptr) << "Timed out waiting for thread to respond to signal.";
260 thread.join();
323 std::vector<std::thread*> threads;
329 std::thread* thread = new std::thread([i, &frames, &maps, &process_memory, &wait]() {
338 ASSERT_LE(3U, frames[i]) << "Failed for thread " << i;
340 threads.push_back(thread);
343 for (auto thread : threads) {
344 thread->join();
345 delete thread;