diff options
Diffstat (limited to 'boost/fiber/scheduler.hpp')
-rw-r--r-- | boost/fiber/scheduler.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/boost/fiber/scheduler.hpp b/boost/fiber/scheduler.hpp index accedf03d7..14567e83b8 100644 --- a/boost/fiber/scheduler.hpp +++ b/boost/fiber/scheduler.hpp @@ -13,7 +13,7 @@ #include <vector> #include <boost/config.hpp> -#include <boost/context/continuation.hpp> +#include <boost/context/fiber.hpp> #include <boost/intrusive/list.hpp> #include <boost/intrusive_ptr.hpp> #include <boost/intrusive/set.hpp> @@ -122,9 +122,9 @@ public: void schedule_from_remote( context *) noexcept; #endif - boost::context::continuation dispatch() noexcept; + boost::context::fiber dispatch() noexcept; - boost::context::continuation terminate( detail::spinlock_lock &, context *) noexcept; + boost::context::fiber terminate( detail::spinlock_lock &, context *) noexcept; void yield( context *) noexcept; |