2
0
mirror of https://github.com/boostorg/fiber.git synced 2026-02-15 13:02:29 +00:00

rename condition -> condition_variable

This commit is contained in:
Oliver Kowalke
2015-12-13 13:45:49 +01:00
parent 3272f3ca8a
commit 570b0a9ea9
15 changed files with 57 additions and 58 deletions

View File

@@ -0,0 +1,47 @@
// Copyright Oliver Kowalke 2013.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include "boost/fiber/condition_variable.hpp"
#include "boost/fiber/context.hpp"
#ifdef BOOST_HAS_ABI_HEADERS
# include BOOST_ABI_PREFIX
#endif
namespace boost {
namespace fibers {
void
condition_variable::notify_one() noexcept {
// get one context' from wait-queue
detail::spinlock_lock lk( wait_queue_splk_);
if ( wait_queue_.empty() ) {
return;
}
context * ctx = & wait_queue_.front();
wait_queue_.pop_front();
// notify context
context::active()->set_ready( ctx);
}
void
condition_variable::notify_all() noexcept {
// get all context' from wait-queue
detail::spinlock_lock lk( wait_queue_splk_);
// notify all context'
while ( ! wait_queue_.empty() ) {
context * ctx = & wait_queue_.front();
wait_queue_.pop_front();
context::active()->set_ready( ctx);
}
}
}}
#ifdef BOOST_HAS_ABI_HEADERS
# include BOOST_ABI_SUFFIX
#endif