about summary refs log tree commit diff
path: root/library/std/src/sys/pal/teeos/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/std/src/sys/pal/teeos/mod.rs')
-rw-r--r--library/std/src/sys/pal/teeos/mod.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/library/std/src/sys/pal/teeos/mod.rs b/library/std/src/sys/pal/teeos/mod.rs
index 60a227afb84..2bf2e2ceb31 100644
--- a/library/std/src/sys/pal/teeos/mod.rs
+++ b/library/std/src/sys/pal/teeos/mod.rs
@@ -27,6 +27,14 @@ pub mod thread;
 #[path = "../unix/time.rs"]
 pub mod time;
 
+#[path = "../unix/sync"]
+pub mod sync {
+    mod condvar;
+    mod mutex;
+    pub use condvar::Condvar;
+    pub use mutex::Mutex;
+}
+
 use crate::io::ErrorKind;
 
 pub fn abort_internal() -> ! {