Home
last modified time | relevance | path

Searched refs:has_ready_fibers (Results 1 – 15 of 15) sorted by relevance

/third_party/boost/boost/fiber/
Doperations.hpp76 bool has_ready_fibers() noexcept { in has_ready_fibers() function
77 return boost::fibers::context::active()->get_scheduler()->has_ready_fibers(); in has_ready_fibers()
Dscheduler.hpp140 bool has_ready_fibers() const noexcept;
/third_party/boost/libs/fiber/examples/asio/
Dround_robin.hpp82 if ( has_ready_fibers() ) { in round_robin()
126 bool has_ready_fibers() const noexcept { in has_ready_fibers() function in boost::fibers::asio::round_robin
/third_party/boost/libs/fiber/doc/
Dscheduling.qbk87 virtual bool has_ready_fibers() const noexcept = 0;
123 [member_heading algorithm..has_ready_fibers]
125 virtual bool has_ready_fibers() const noexcept = 0;
182 virtual bool has_ready_fibers() const noexcept;
213 [member_heading round_robin..has_ready_fibers]
215 virtual bool has_ready_fibers() const noexcept;
277 virtual bool has_ready_fibers() const noexcept;
321 [member_heading work_stealing..has_ready_fibers]
323 virtual bool has_ready_fibers() const noexcept;
381 virtual bool has_ready_fibers() const noexcept;
[all …]
Dintegration.qbk239 (We won[t] describe `awakened()`, `pick_next()` or `has_ready_fibers()`, as
241 round_robin..pick_next] and [member_link round_robin..has_ready_fibers].)
251 `has_ready_fibers()` in the lambda loop? Why not leverage the normal
257 are `has_ready_fibers()` and [ns_function_link this_fiber..yield]. `yield()`
Dnuma.qbk331 virtual bool has_ready_fibers() const noexcept;
378 [ns_member_heading numa..work_stealing..has_ready_fibers]
380 virtual bool has_ready_fibers() const noexcept;
Dfiber.qbk25 bool has_ready_fibers();
254 bool has_ready_fibers() noexcept;
460 [function_heading has_ready_fibers]
462 bool has_ready_fibers() noexcept;
/third_party/boost/boost/fiber/algo/
Dround_robin.hpp52 bool has_ready_fibers() const noexcept override;
Dwork_stealing.hpp73 bool has_ready_fibers() const noexcept override { in has_ready_fibers() function in boost::fibers::algo::work_stealing
Dshared_work.hpp66 bool has_ready_fibers() const noexcept override { in has_ready_fibers() function in boost::fibers::algo::shared_work
Dalgorithm.hpp44 virtual bool has_ready_fibers() const noexcept = 0;
/third_party/boost/libs/fiber/src/
Dscheduler.cpp338 scheduler::has_ready_fibers() const noexcept { in has_ready_fibers() function in boost::fibers::scheduler
339 return algo_->has_ready_fibers(); in has_ready_fibers()
345 while ( algo_->has_ready_fibers() ) { in set_algo()
/third_party/boost/boost/fiber/numa/algo/
Dwork_stealing.hpp78 virtual bool has_ready_fibers() const noexcept { in has_ready_fibers() function in boost::fibers::numa::algo::work_stealing
/third_party/boost/libs/fiber/src/algo/
Dround_robin.cpp43 round_robin::has_ready_fibers() const noexcept { in has_ready_fibers() function in boost::fibers::algo::round_robin
/third_party/boost/libs/fiber/examples/
Dpriority.cpp139 virtual bool has_ready_fibers() const noexcept { in has_ready_fibers() function in priority_scheduler