aboutsummaryrefslogtreecommitdiff
path: root/embassy-sync/src/blocking_mutex/raw.rs
diff options
context:
space:
mode:
Diffstat (limited to 'embassy-sync/src/blocking_mutex/raw.rs')
-rw-r--r--embassy-sync/src/blocking_mutex/raw.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/embassy-sync/src/blocking_mutex/raw.rs b/embassy-sync/src/blocking_mutex/raw.rs
index a8afcad34..50f965e00 100644
--- a/embassy-sync/src/blocking_mutex/raw.rs
+++ b/embassy-sync/src/blocking_mutex/raw.rs
@@ -37,6 +37,7 @@ pub unsafe trait RawMutex {
37/// # Safety 37/// # Safety
38/// 38///
39/// This mutex is safe to share between different executors and interrupts. 39/// This mutex is safe to share between different executors and interrupts.
40#[derive(Debug)]
40pub struct CriticalSectionRawMutex { 41pub struct CriticalSectionRawMutex {
41 _phantom: PhantomData<()>, 42 _phantom: PhantomData<()>,
42} 43}
@@ -65,6 +66,7 @@ unsafe impl RawMutex for CriticalSectionRawMutex {
65/// # Safety 66/// # Safety
66/// 67///
67/// **This Mutex is only safe within a single executor.** 68/// **This Mutex is only safe within a single executor.**
69#[derive(Debug)]
68pub struct NoopRawMutex { 70pub struct NoopRawMutex {
69 _phantom: PhantomData<*mut ()>, 71 _phantom: PhantomData<*mut ()>,
70} 72}