diff --git a/freertos-rust/src/mutex.rs b/freertos-rust/src/mutex.rs index 6e929e4..fb43eff 100644 --- a/freertos-rust/src/mutex.rs +++ b/freertos-rust/src/mutex.rs @@ -6,9 +6,9 @@ use crate::units::*; pub type Mutex = MutexImpl; pub type RecursiveMutex = MutexImpl; -unsafe impl Send for MutexImpl {} +unsafe impl Send for MutexImpl {} -unsafe impl Sync for MutexImpl {} +unsafe impl Sync for MutexImpl {} /// Mutual exclusion access to a contained value. Can be recursive - /// the current owner of a lock can re-lock it.