rust/tests/ui/missing_spin_loop.stderr

41 lines
1.8 KiB
Plaintext
Raw Normal View History

2021-12-26 03:00:29 -06:00
error: busy-waiting loop should at least have a spin loop hint
2023-07-27 06:40:22 -05:00
--> $DIR/missing_spin_loop.rs:10:37
2021-12-26 03:00:29 -06:00
|
LL | while b.load(Ordering::Acquire) {}
2023-07-01 06:08:01 -05:00
| ^^ help: try: `{ std::hint::spin_loop() }`
2021-12-26 03:00:29 -06:00
|
= note: `-D clippy::missing-spin-loop` implied by `-D warnings`
error: busy-waiting loop should at least have a spin loop hint
2023-07-27 06:40:22 -05:00
--> $DIR/missing_spin_loop.rs:12:37
2021-12-26 03:00:29 -06:00
|
LL | while !b.load(Ordering::SeqCst) {}
2023-07-01 06:08:01 -05:00
| ^^ help: try: `{ std::hint::spin_loop() }`
2021-12-26 03:00:29 -06:00
error: busy-waiting loop should at least have a spin loop hint
2023-07-27 06:40:22 -05:00
--> $DIR/missing_spin_loop.rs:14:46
2021-12-26 03:00:29 -06:00
|
LL | while b.load(Ordering::Acquire) == false {}
2023-07-01 06:08:01 -05:00
| ^^ help: try: `{ std::hint::spin_loop() }`
2021-12-26 03:00:29 -06:00
error: busy-waiting loop should at least have a spin loop hint
2023-07-27 06:40:22 -05:00
--> $DIR/missing_spin_loop.rs:16:49
2021-12-26 03:00:29 -06:00
|
LL | while { true == b.load(Ordering::Acquire) } {}
2023-07-01 06:08:01 -05:00
| ^^ help: try: `{ std::hint::spin_loop() }`
2021-12-26 03:00:29 -06:00
error: busy-waiting loop should at least have a spin loop hint
2023-07-27 06:40:22 -05:00
--> $DIR/missing_spin_loop.rs:18:93
2021-12-26 03:00:29 -06:00
|
LL | while b.compare_exchange(true, false, Ordering::Acquire, Ordering::Relaxed) != Ok(true) {}
2023-07-01 06:08:01 -05:00
| ^^ help: try: `{ std::hint::spin_loop() }`
2021-12-26 03:00:29 -06:00
error: busy-waiting loop should at least have a spin loop hint
2023-07-27 06:40:22 -05:00
--> $DIR/missing_spin_loop.rs:20:94
2021-12-26 03:00:29 -06:00
|
LL | while Ok(false) != b.compare_exchange(false, true, Ordering::Acquire, Ordering::Relaxed) {}
2023-07-01 06:08:01 -05:00
| ^^ help: try: `{ std::hint::spin_loop() }`
2021-12-26 03:00:29 -06:00
error: aborting due to 6 previous errors