Home | History | Annotate | Download | only in Support

Lines Matching defs:thread

1 //===-- llvm/Support/thread.h - Wrapper for <thread> ------------*- C++ -*-===//
10 // This header is a wrapper for <thread> that works around problems with the
11 // MSVC headers when exceptions are disabled. It also provides llvm::thread,
12 // which is either a typedef of std::thread or a replacement that calls the
24 #include <thread>
27 typedef std::thread thread;
36 struct thread {
37 thread() {}
38 thread(thread &&other) {}
40 explicit thread(Function &&f, Args &&... args) {
43 thread(const thread &) = delete;