Skip to content

Commit 5da7f36

Browse files
Rollup merge of #114359 - ttsugriy:barrier-simpl, r=cuviper
[library/std] Replace condv while loop with `cvar.wait_while`. `wait_while` takes care of spurious wake-ups in centralized place, reducing chances for mistakes and potential future optimizations (who knows, maybe in future there will be no spurious wake-ups? :)
2 parents 3791f6d + a090e97 commit 5da7f36

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

library/std/src/sync/barrier.rs

+2-5
Original file line numberDiff line numberDiff line change
@@ -130,11 +130,8 @@ impl Barrier {
130130
let local_gen = lock.generation_id;
131131
lock.count += 1;
132132
if lock.count < self.num_threads {
133-
// We need a while loop to guard against spurious wakeups.
134-
// https://en.wikipedia.org/wiki/Spurious_wakeup
135-
while local_gen == lock.generation_id {
136-
lock = self.cvar.wait(lock).unwrap();
137-
}
133+
let _guard =
134+
self.cvar.wait_while(lock, |state| local_gen == state.generation_id).unwrap();
138135
BarrierWaitResult(false)
139136
} else {
140137
lock.count = 0;

0 commit comments

Comments
 (0)