YACLib
C++ library for concurrent tasks execution
Loading...
Searching...
No Matches
default_event.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <yaclib/config.hpp>
4
5#if YACLIB_FUTEX != 0
7#else
9#endif
10
11namespace yaclib::detail {
12
13#if YACLIB_FUTEX != 0
14using DefaultEvent = AtomicEvent;
15#else
17#endif
18
19} // namespace yaclib::detail
MutexEvent DefaultEvent