aboutsummaryrefslogtreecommitdiffstats
path: root/src/cs/dummy.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cs/dummy.rs')
-rw-r--r--src/cs/dummy.rs18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/cs/dummy.rs b/src/cs/dummy.rs
new file mode 100644
index 0000000..86f4e90
--- /dev/null
+++ b/src/cs/dummy.rs
@@ -0,0 +1,18 @@
+use super::CriticalSection;
+
+pub struct Locker {}
+
+impl Locker {
+ pub const fn new() -> Self {
+ Self {}
+ }
+}
+
+impl CriticalSection for Locker {
+ fn with_lock<F, R>(&self, f: F) -> R
+ where
+ F: FnOnce() -> R,
+ {
+ f()
+ }
+}