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

remove wake_up/woke_up -> use of is_ready/set_ready instead

This commit is contained in:
Oliver Kowalke
2013-02-17 17:40:08 +01:00
parent 512a0a1ecb
commit 68615292d2
8 changed files with 29 additions and 35 deletions

View File

@@ -42,7 +42,7 @@ condition::notify_one()
lk.unlock();
if ( n)
n->wake_up();
n->set_ready();
}
void
@@ -56,7 +56,7 @@ condition::notify_all()
BOOST_FOREACH( detail::notify::ptr_t const& n, waiting)
{
n->wake_up();
n->set_ready();
}
}