mirror of
https://github.com/boostorg/fiber.git
synced 2026-02-12 12:02:54 +00:00
Some reviewers disliked that to build a custom sched_algorithm subclass, you must necessarily manipulate pointers to classes in the boost::fibers::detail namespace. Redefine all such methods to use fiber_base* rather than detail::worker_fiber*. Hoist fiber_base* into boost::fibers namespace. We considered an opaque typedef rather than fiber_base*, but in fact a sched_algorithm subclass may need is_ready(). Moreover, a sched_algorithm subclass may well want to use an intrusive linked list to queue fibers. Hoist worker_fiber::nxt_ pointer into fiber_base, and remove worker_fiber::next() and next_reset() methods. This allows recasting detail::fifo in terms of fiber_base*, therefore round_robin can be stated almost entirely in terms of fiber_base* rather than worker_fiber*. Recast fiber constructor taking worker_fiber* to take fiber_base* instead. This constructor is used solely for fiber migration; with relevant functions now returning fiber_base*, we think we no longer need fiber(worker_fiber*).
61 lines
1.4 KiB
C++
61 lines
1.4 KiB
C++
|
|
// 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 "workstealing_round_robin.hpp"
|
|
|
|
#include <boost/assert.hpp>
|
|
|
|
#ifdef BOOST_HAS_ABI_HEADERS
|
|
# include BOOST_ABI_PREFIX
|
|
#endif
|
|
|
|
void
|
|
workstealing_round_robin::awakened( boost::fibers::fiber_base * f)
|
|
{
|
|
boost::mutex::scoped_lock lk( mtx_);
|
|
rqueue_.push_back( f);
|
|
}
|
|
|
|
boost::fibers::fiber_base *
|
|
workstealing_round_robin::pick_next()
|
|
{
|
|
boost::mutex::scoped_lock lk( mtx_);
|
|
boost::fibers::fiber_base * f = 0;
|
|
if ( ! rqueue_.empty() )
|
|
{
|
|
f = rqueue_.front();
|
|
rqueue_.pop_front();
|
|
}
|
|
return f;
|
|
}
|
|
|
|
void
|
|
workstealing_round_robin::priority( boost::fibers::fiber_base * f, int prio) BOOST_NOEXCEPT
|
|
{
|
|
BOOST_ASSERT( f);
|
|
|
|
// set only priority to fiber
|
|
// round-robin does not respect priorities
|
|
static_cast<boost::fibers::detail::worker_fiber*>(f)->priority( prio);
|
|
}
|
|
|
|
boost::fibers::fiber
|
|
workstealing_round_robin::steal() BOOST_NOEXCEPT
|
|
{
|
|
boost::mutex::scoped_lock lk( mtx_);
|
|
boost::fibers::fiber_base * f = 0;
|
|
if ( ! rqueue_.empty() )
|
|
{
|
|
f = rqueue_.back();
|
|
rqueue_.pop_back();
|
|
}
|
|
return boost::fibers::fiber( f);
|
|
}
|
|
|
|
#ifdef BOOST_HAS_ABI_HEADERS
|
|
# include BOOST_ABI_SUFFIX
|
|
#endif
|