aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIain Buclaw <ibuclaw@gdcproject.org>2022-06-14 00:05:35 +0200
committerIain Buclaw <ibuclaw@gdcproject.org>2022-06-14 00:07:13 +0200
commit4f19e078ccb698cab1588f452bf00932fd4ef574 (patch)
tree0c4b74ff38faf2f476ec38253966c051e6b3b2a7
parent2c11662391bafd74c9d19bf7626b7bcef41c1323 (diff)
downloadgcc-4f19e078ccb698cab1588f452bf00932fd4ef574.zip
gcc-4f19e078ccb698cab1588f452bf00932fd4ef574.tar.gz
gcc-4f19e078ccb698cab1588f452bf00932fd4ef574.tar.bz2
libphobos: Check in missing core.sync package module
This was meant to be part of r13-1062 in the merge with upstream druntime 454471d8.
-rw-r--r--libphobos/libdruntime/core/sync/package.d20
1 files changed, 20 insertions, 0 deletions
diff --git a/libphobos/libdruntime/core/sync/package.d b/libphobos/libdruntime/core/sync/package.d
new file mode 100644
index 0000000..fe389a0
--- /dev/null
+++ b/libphobos/libdruntime/core/sync/package.d
@@ -0,0 +1,20 @@
+/**
+ * Provides thread synchronization tools such as mutexes, semaphores and barriers.
+ *
+ * License: Distributed under the
+ * $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0).
+ * (See accompanying file LICENSE)
+ * Authors: Sean Kelly, Rainer Schuetze
+ * Source: $(DRUNTIMESRC core/sync/package.d)
+ */
+
+module core.sync;
+
+public import core.sync.barrier;
+public import core.sync.condition;
+public import core.sync.config;
+public import core.sync.event;
+public import core.sync.exception;
+public import core.sync.mutex;
+public import core.sync.rwmutex;
+public import core.sync.semaphore;