• 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 #ifndef TEST_SUPPORT_MAKE_TEST_THREAD_H
9 #define TEST_SUPPORT_MAKE_TEST_THREAD_H
10 
11 #include <thread>
12 #include <utility>
13 
14 namespace support {
15 
16 template <class F, class ...Args>
make_test_thread(F && f,Args &&...args)17 std::thread make_test_thread(F&& f, Args&& ...args) {
18     return std::thread(std::forward<F>(f), std::forward<Args>(args)...);
19 }
20 
21 } // end namespace support
22 
23 #endif // TEST_SUPPORT_MAKE_TEST_THREAD_H
24