summaryrefslogtreecommitdiff
path: root/src/sync.rs
diff options
context:
space:
mode:
authorChristian Cunningham <c@localhost>2022-08-26 18:58:27 -0700
committerChristian Cunningham <c@localhost>2022-08-26 18:58:27 -0700
commit1c7c618c9d4b26e7da4b8f046905c34a4b969f96 (patch)
tree2a7ac20e987bc9113ec3e2aa719d0f58f2636802 /src/sync.rs
parent07e7347e4abde7260b8fcfd886a2509197f06c65 (diff)
Coverage
Diffstat (limited to 'src/sync.rs')
-rw-r--r--src/sync.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sync.rs b/src/sync.rs
index 00d4d39..63dc98a 100644
--- a/src/sync.rs
+++ b/src/sync.rs
@@ -135,6 +135,7 @@ impl<T> interface::Mutex for SpinLock<T> {
Err(true) => {
break;
}
+ Err(false) => {}
}
}
let data = unsafe { &mut *self.data.get() };