• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #ifndef TEST_SUPPORT_MAKE_TEST_THREAD_H
10 #define TEST_SUPPORT_MAKE_TEST_THREAD_H
11 
12 #include <thread>
13 #include <utility>
14 
15 namespace support {
16 
17 template <class F, class ...Args>
make_test_thread(F && f,Args &&...args)18 std::thread make_test_thread(F&& f, Args&& ...args) {
19     return std::thread(std::forward<F>(f), std::forward<Args>(args)...);
20 }
21 
22 } // end namespace support
23 
24 #endif // TEST_SUPPORT_MAKE_TEST_THREAD_H
25