mirror of
https://github.com/boostorg/fiber.git
synced 2026-02-13 12:22:36 +00:00
some fixes
This commit is contained in:
@@ -29,7 +29,7 @@ fiber::start_fiber_()
|
||||
{ detail::scheduler::instance().spawn( fiber_data_); }
|
||||
|
||||
int
|
||||
fiber::priority() const
|
||||
fiber::priority() const BOOST_NOEXCEPT
|
||||
{
|
||||
BOOST_ASSERT( fiber_data_);
|
||||
|
||||
@@ -37,7 +37,7 @@ fiber::priority() const
|
||||
}
|
||||
|
||||
void
|
||||
fiber::priority( int prio)
|
||||
fiber::priority( int prio) BOOST_NOEXCEPT
|
||||
{
|
||||
BOOST_ASSERT( fiber_data_);
|
||||
|
||||
@@ -72,7 +72,7 @@ fiber::join()
|
||||
}
|
||||
|
||||
void
|
||||
fiber::interrupt()
|
||||
fiber::interrupt() BOOST_NOEXCEPT
|
||||
{
|
||||
BOOST_ASSERT( fiber_data_);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user