We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d57fa41 commit 7d341d6Copy full SHA for 7d341d6
[refs]
@@ -1,5 +1,5 @@
1
---
2
-refs/heads/master: 6e73e45e372a0dfc5a2ebf19780dc392ec092492
+refs/heads/master: ec0fbf526e76716379b86d53c1588e8f02ae986d
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5
refs/heads/try: 2898dcc5d97da9427ac367542382b6239d9c0bbf
trunk/src/rt/rust_builtin.cpp
@@ -896,7 +896,8 @@ rust_wait_cond_lock(rust_cond_lock *lock) {
896
lock->waiting = task;
897
task->block(lock, "waiting for signal");
898
lock->lock.unlock();
899
- task->yield(false);
+ bool killed = false;
900
+ task->yield(&killed);
901
lock->lock.lock();
902
}
903
0 commit comments