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:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user