aboutsummaryrefslogtreecommitdiff
path: root/std/src/sync/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'std/src/sync/mod.rs')
-rw-r--r--std/src/sync/mod.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/std/src/sync/mod.rs b/std/src/sync/mod.rs
new file mode 100644
index 0000000..62152ed
--- /dev/null
+++ b/std/src/sync/mod.rs
@@ -0,0 +1,5 @@
+mod mutex;
+
+pub use self::mutex::{Mutex, MutexGuard};
+
+pub type LockResult<T> = Result<T, ()>;