]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libphobos: Check in missing core.sync package module
authorIain Buclaw <ibuclaw@gdcproject.org>
Mon, 13 Jun 2022 22:05:35 +0000 (00:05 +0200)
committerIain Buclaw <ibuclaw@gdcproject.org>
Mon, 13 Jun 2022 22:07:13 +0000 (00:07 +0200)
This was meant to be part of r13-1062 in the merge with upstream
druntime 454471d8.

libphobos/libdruntime/core/sync/package.d [new file with mode: 0644]

diff --git a/libphobos/libdruntime/core/sync/package.d b/libphobos/libdruntime/core/sync/package.d
new file mode 100644 (file)
index 0000000..fe389a0
--- /dev/null
@@ -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;