Skip to content

Commit

Permalink
Split core.thread.fiber to package.d and base.d (#16695)
Browse files Browse the repository at this point in the history
  • Loading branch information
denizzzka authored Jul 21, 2024
1 parent 814e786 commit b13c0cd
Show file tree
Hide file tree
Showing 6 changed files with 1,079 additions and 797 deletions.
6 changes: 6 additions & 0 deletions druntime/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,12 @@ $(DOC_OUTPUT_DIR)/core_thread.html : import/core/thread/package.d $(DMD)
$(DOC_OUTPUT_DIR)/core_thread_%.html : import/core/thread/%.d $(DMD)
$(DMD) $(DDOCFLAGS) -Df$@ project.ddoc $(DOCFMT) $<

$(DOC_OUTPUT_DIR)/core_thread_fiber.html : import/core/thread/fiber/package.d $(DMD)
$(DMD) $(DDOCFLAGS) -Df$@ project.ddoc $(DOCFMT) $<

$(DOC_OUTPUT_DIR)/core_thread_fiber_%.html : import/core/thread/fiber/%.d $(DMD)
$(DMD) $(DDOCFLAGS) -Df$@ project.ddoc $(DOCFMT) $<

$(DOC_OUTPUT_DIR)/core_builtins.html : import/core/builtins.d $(DMD)
$(DMD) $(DDOCFLAGS) -Df$@ project.ddoc $(DOCFMT) $<

Expand Down
3 changes: 2 additions & 1 deletion druntime/mak/COPY
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,8 @@ COPY=\
$(IMPDIR)\core\sys\windows\wtypes.d \
\
$(IMPDIR)\core\thread\context.d \
$(IMPDIR)\core\thread\fiber.d \
$(IMPDIR)\core\thread\fiber\base.d \
$(IMPDIR)\core\thread\fiber\package.d \
$(IMPDIR)\core\thread\types.d \
$(IMPDIR)\core\thread\threadgroup.d \
$(IMPDIR)\core\thread\threadbase.d \
Expand Down
4 changes: 3 additions & 1 deletion druntime/mak/DOCS
Original file line number Diff line number Diff line change
Expand Up @@ -513,10 +513,12 @@ DOCS=\
$(DOCDIR)\core_sys_windows_stdc_time.html \
\
$(DOCDIR)\core_thread_context.html \
$(DOCDIR)\core_thread_fiber_base.html \
$(DOCDIR)\core_thread_fiber_package.html \
$(DOCDIR)\core_thread_fiber.html \
$(DOCDIR)\core_thread_package.html \
$(DOCDIR)\core_thread_threadgroup.html \
$(DOCDIR)\core_thread_types.html \
$(DOCDIR)\core_thread_fiber.html \
$(DOCDIR)\core_thread_osthread.html \
$(DOCDIR)\core_thread_threadbase.html \
$(DOCDIR)\core_thread.html \
Expand Down
3 changes: 2 additions & 1 deletion druntime/mak/SRCS
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,8 @@ SRCS=\
src\core\sys\windows\wtsapi32.d \
src\core\sys\windows\wtypes.d \
\
src\core\thread\fiber.d \
src\core\thread\fiber\base.d \
src\core\thread\fiber\package.d \
src\core\thread\types.d \
src\core\thread\threadgroup.d \
src\core\thread\threadbase.d \
Expand Down
Loading

0 comments on commit b13c0cd

Please sign in to comment.