fairness
v1.0.0
A collection of advanced syncronization mechanisms.
|
This file contains the implementation of the wait operations used by the mutexes. More...
#include <boost/fairness/config.hpp>
#include <boost/fairness/detail/pause_ops.hpp>
#include <atomic>
#include <thread>
#include <functional>
Go to the source code of this file.
Namespaces | |
namespace | boost |
namespace | boost::fairness |
namespace | boost::fairness::detail |
Functions | |
template<typename T > | |
void | boost::fairness::detail::notify_all (T &mem) noexcept |
template<typename T > | |
void | boost::fairness::detail::notify_one (T &mem) noexcept |
void | boost::fairness::detail::spin_wait () noexcept |
template<typename K > | |
void | boost::fairness::detail::spin_wait (std::atomic_flag &mem, K const expected) noexcept |
template<typename T , typename K > | |
void | boost::fairness::detail::spin_wait (T &mem, K const expected) noexcept |
template<typename T , typename K > | |
void | boost::fairness::detail::wait (T &mem, K const expected) noexcept |
This file contains the implementation of the wait operations used by the mutexes.