diff options
Diffstat (limited to 'embassy-sync/src/blocking_rwlock/mod.rs')
| -rw-r--r-- | embassy-sync/src/blocking_rwlock/mod.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/embassy-sync/src/blocking_rwlock/mod.rs b/embassy-sync/src/blocking_rwlock/mod.rs index a304b77d6..a8fb7d6bc 100644 --- a/embassy-sync/src/blocking_rwlock/mod.rs +++ b/embassy-sync/src/blocking_rwlock/mod.rs | |||
| @@ -1,11 +1,11 @@ | |||
| 1 | //! Blocking read-write lock. | 1 | //! Blocking read-write lock. |
| 2 | //! | 2 | //! |
| 3 | //! This module provides a blocking read-write lock that can be used to synchronize data. | 3 | //! This module provides a blocking read-write lock that can be used to synchronize data. |
| 4 | pub mod raw_rwlock; | 4 | pub mod raw; |
| 5 | 5 | ||
| 6 | use core::cell::UnsafeCell; | 6 | use core::cell::UnsafeCell; |
| 7 | 7 | ||
| 8 | use self::raw_rwlock::RawRwLock; | 8 | use self::raw::RawRwLock; |
| 9 | 9 | ||
| 10 | /// Blocking read-write lock (not async) | 10 | /// Blocking read-write lock (not async) |
| 11 | /// | 11 | /// |
| @@ -218,4 +218,4 @@ mod thread_mode_rwlock { | |||
| 218 | // Drop of the inner `T` happens after this. | 218 | // Drop of the inner `T` happens after this. |
| 219 | } | 219 | } |
| 220 | } | 220 | } |
| 221 | } \ No newline at end of file | 221 | } |
