2022-03-14 06:02:53 -05:00
|
|
|
error: busy-waiting loop should at least have a spin loop hint
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/missing_spin_loop_no_std.rs:12:37
|
2022-03-14 06:02:53 -05:00
|
|
|
|
|
|
|
|
LL | while b.load(Ordering::Acquire) {}
|
2023-07-17 03:19:29 -05:00
|
|
|
| ^^ help: try: `{ core::hint::spin_loop() }`
|
2022-03-14 06:02:53 -05:00
|
|
|
|
|
|
|
|
= note: `-D clippy::missing-spin-loop` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|