mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-12-18 22:05:37 +01:00
Fix clash with defmt
This commit is contained in:
parent
1a24c725d2
commit
b15bda2d39
4 changed files with 12 additions and 6 deletions
|
|
@ -66,7 +66,9 @@ impl Barrier {
|
|||
}
|
||||
|
||||
pub fn wait(&self) {
|
||||
while !self.inner.load(Ordering::Acquire) {}
|
||||
while !self.inner.load(Ordering::Acquire) {
|
||||
core::hint::spin_loop()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue