YACLib
C++ library for concurrent tasks execution
Loading...
Searching...
No Matches
atomic_flag.hpp
Go to the documentation of this file.
1#pragma once
2
3#if YACLIB_FAULT_ATOMIC == 2
6
7# include <atomic>
8
9namespace yaclib_std {
10
12
13} // namespace yaclib_std
14#elif YACLIB_FAULT_ATOMIC == 1
16
17# include <atomic>
18
19namespace yaclib_std {
20
22
23} // namespace yaclib_std
24#else
25# include <atomic>
26
27namespace yaclib_std {
28
29using std::atomic_flag;
30
31} // namespace yaclib_std
32#endif