From 8e638052593d2636a7b457bb869be10671f156bb Mon Sep 17 00:00:00 2001 From: Mica White Date: Fri, 8 Mar 2024 17:31:13 -0500 Subject: Remove std mutex --- src/mutex.rs | 3 --- 1 file changed, 3 deletions(-) (limited to 'src') diff --git a/src/mutex.rs b/src/mutex.rs index 9298b0c..f6b86de 100644 --- a/src/mutex.rs +++ b/src/mutex.rs @@ -12,9 +12,6 @@ pub type SpinLock = Mutex>; /// A parking lot mutex pub type ParkingMutex = Mutex; -/// A standard library mutex -pub type StdMutex = Mutex>; - /// A mutual exclusion primitive useful for protecting shared data, which /// cannot deadlock. /// -- cgit v1.2.3