Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit eb279cf

Browse files
authored
Merge pull request #3135 from denizzzka/split_squash
Split osthread.d merged-on-behalf-of: Nicholas Wilson <thewilsonator@users.noreply.github.com>
2 parents 307191f + a76d0bd commit eb279cf

File tree

8 files changed

+3376
-3085
lines changed

8 files changed

+3376
-3085
lines changed

mak/COPY

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -478,6 +478,9 @@ COPY=\
478478
\
479479
$(IMPDIR)\core\thread\context.d \
480480
$(IMPDIR)\core\thread\fiber.d \
481+
$(IMPDIR)\core\thread\types.d \
482+
$(IMPDIR)\core\thread\threadgroup.d \
483+
$(IMPDIR)\core\thread\threadbase.d \
481484
$(IMPDIR)\core\thread\osthread.d \
482485
$(IMPDIR)\core\thread\package.d \
483486
\

mak/SRCS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -476,6 +476,9 @@ SRCS=\
476476
src\core\sys\windows\wtypes.d \
477477
\
478478
src\core\thread\fiber.d \
479+
src\core\thread\types.d \
480+
src\core\thread\threadgroup.d \
481+
src\core\thread\threadbase.d \
479482
src\core\thread\osthread.d \
480483
src\core\thread\context.d \
481484
src\core\thread\package.d \

src/core/thread/fiber.d

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
module core.thread.fiber;
1313

1414
import core.thread.osthread;
15+
import core.thread.threadgroup;
16+
import core.thread.types;
1517
import core.thread.context;
1618

1719
///////////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)