From 4c0a1e945913081fcd35fdf6eed182513e3521d5 Mon Sep 17 00:00:00 2001 From: LinuxHeki Date: Tue, 2 May 2023 14:41:53 +0200 Subject: [PATCH] fix compilation for thumbv6m-none-eabi --- src/config/hashing.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/config/hashing.rs b/src/config/hashing.rs index fcd655f1..2ac19199 100644 --- a/src/config/hashing.rs +++ b/src/config/hashing.rs @@ -50,7 +50,8 @@ impl HokmaLock { pub fn write(&'static self) -> WhenTheHokmaSuppression { loop { - let previous = self.lock.swap(1, Ordering::SeqCst); + let previous = self.lock.load(Ordering::SeqCst); + self.lock.store(1, Ordering::SeqCst); if previous != 1 { return WhenTheHokmaSuppression {