File tree Expand file tree Collapse file tree 3 files changed +24
-0
lines changed Expand file tree Collapse file tree 3 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -109,6 +109,7 @@ DOCS=\
109
109
$(DOCDIR)\core_stdcpp_string.html \
110
110
$(DOCDIR)\core_stdcpp_vector.html \
111
111
\
112
+ $(DOCDIR)\core_sync.html \
112
113
$(DOCDIR)\core_sync_event.html \
113
114
$(DOCDIR)\core_sync_exception.html \
114
115
$(DOCDIR)\core_sync_barrier.html \
Original file line number Diff line number Diff line change @@ -195,6 +195,9 @@ $(DOC_OUTPUT_DIR)/core_stdc_%.html : src/core/stdc/%.d $(DMD)
195
195
$(DOC_OUTPUT_DIR ) /core_stdcpp_% .html : src/core/stdcpp/% .d $(DMD )
196
196
$(DMD ) $(DDOCFLAGS ) -Df$@ project.ddoc $(DOCFMT ) $<
197
197
198
+ $(DOC_OUTPUT_DIR ) /core_sync.html : src/core/sync/package.d $(DMD )
199
+ $(DMD ) $(DDOCFLAGS ) -Df$@ project.ddoc $(DOCFMT ) $<
200
+
198
201
$(DOC_OUTPUT_DIR ) /core_sync_% .html : src/core/sync/% .d $(DMD )
199
202
$(DMD ) $(DDOCFLAGS ) -Df$@ project.ddoc $(DOCFMT ) $<
200
203
Original file line number Diff line number Diff line change
1
+ /**
2
+ * Provides thread synchronization tools such as mutexes, semaphores and barriers.
3
+ *
4
+ * License: Distributed under the
5
+ * $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0).
6
+ * (See accompanying file LICENSE)
7
+ * Authors: Sean Kelly, Rainer Schuetze
8
+ * Source: $(DRUNTIMESRC core/sync/package.d)
9
+ */
10
+
11
+ module core.sync ;
12
+
13
+ public import core.sync.barrier ;
14
+ public import core.sync.condition ;
15
+ public import core.sync.config ;
16
+ public import core.sync.event ;
17
+ public import core.sync.exception ;
18
+ public import core.sync.mutex ;
19
+ public import core.sync.rwmutex ;
20
+ public import core.sync.semaphore ;
You can’t perform that action at this time.
0 commit comments