From 9a605e7d97c76c5b0bbe9537e117165cdd529325 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 27 Mar 2022 23:40:14 +0100 Subject: [PATCH] Revert "Mutex debug: Enable it (for demo and testing)" This reverts commit 7456a32426e6b4a487adcc279db4547639a0ffba. --- src/prelude.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/prelude.rs b/src/prelude.rs index 2dfb5cd9..06b91eea 100644 --- a/src/prelude.rs +++ b/src/prelude.rs @@ -113,8 +113,8 @@ pub use crate::imports::zipfile::{self, read::ZipFile, result::ZipError}; pub use parking_lot::{RwLock, RwLockReadGuard, RwLockWriteGuard}; // Swap this over for debugging -//pub use parking_lot::{Mutex, MutexGuard}; -pub use crate::debugmutex::{Mutex, MutexGuard}; +pub use parking_lot::{Mutex, MutexGuard}; +//pub use crate::debugmutex::{Mutex, MutexGuard}; use nix::time::ClockId; pub const CLOCK_REALTIME : ClockId = ClockId::CLOCK_REALTIME ; -- 2.30.2