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

some fixes

This commit is contained in:
Oliver Kowalke
2013-06-10 20:11:52 +02:00
parent 6b5d58d2bb
commit 61c3fd4589
15 changed files with 168 additions and 98 deletions

View File

@@ -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_);