2
0
mirror of https://github.com/boostorg/fiber.git synced 2026-02-18 01:52:24 +00:00

fix join(), this_fiber::sleep_until()

This commit is contained in:
Oliver Kowalke
2015-09-10 20:42:28 +02:00
parent 4764c1184c
commit ebd147c08d
2 changed files with 2 additions and 4 deletions

View File

@@ -57,7 +57,7 @@ context::release() {
splk_.unlock();
// notify all waiting fibers
for ( context * f : wait_queue_) {
for ( context * f : tmp) {
do_signal( f);
}