| // This platform has no threads, so we can use a Cell here. |
| pub type MovableMutex = Mutex; |
| unsafe impl Send for Mutex {} |
| unsafe impl Sync for Mutex {} // no threads on this platform |
| #[rustc_const_stable(feature = "const_locks", since = "1.63.0")] |
| pub const fn new() -> Mutex { |
| Mutex { locked: Cell::new(false) } |
| pub unsafe fn lock(&self) { |
| assert_eq!(self.locked.replace(true), false, "cannot recursively acquire mutex"); |
| pub unsafe fn unlock(&self) { |
| pub unsafe fn try_lock(&self) -> bool { |
| self.locked.replace(true) == false |