YACLib
C++ library for concurrent tasks execution
Loading...
Searching...
No Matches
thread.hpp
Go to the documentation of this file.
1#pragma once
2
3#if YACLIB_FAULT_THREAD == 2
5
6namespace yaclib_std {
7
9
10} // namespace yaclib_std
11
12// #elif YACLIB_FAULT_THREAD == 1 // TODO(myannyax) Maybe implement
13// # error "YACLIB_FAULT=THREAD not implemented yet"
14#else
15# include <thread>
16
17namespace yaclib_std {
18
19using thread = std::thread;
20
21} // namespace yaclib_std
22#endif
std::thread thread
Definition thread.hpp:19