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

multithreaded condition_variable

This commit is contained in:
Oliver Kowalke
2013-10-22 19:32:10 +02:00
parent 3eafc0725f
commit 8e04df986c
3 changed files with 156 additions and 2 deletions

View File

@@ -39,8 +39,7 @@ condition::notify_one()
lk.unlock();
// notify waiting fiber
if ( n)
n->set_ready();
if ( n) n->set_ready();
}
void