| author | |
| committer | |
| log | a78ac96134a28d9e8208728bc8affb99122ff4fa |
| tree | f178b6bf724761c9c097a4b7628e36c8d1b6c95b |
| parent | 79bf4003da5fad5046b34d6256eeb8a575890ea5 |
1 files changed, 10 insertions(+), 8 deletions(-)
lib/std/event/loop.zig+10-8| ... | ... | @@ -616,14 +616,16 @@ pub const Loop = struct { |
| 616 | 616 | |
| 617 | 617 | self.workerRun(); |
| 618 | 618 | |
| 619 | switch (builtin.os.tag) { | |
| 620 | .linux, | |
| 621 | .macosx, | |
| 622 | .freebsd, | |
| 623 | .netbsd, | |
| 624 | .dragonfly, | |
| 625 | => self.fs_thread.wait(), | |
| 626 | else => {}, | |
| 619 | if (!builtin.single_threaded) { | |
| 620 | switch (builtin.os.tag) { | |
| 621 | .linux, | |
| 622 | .macosx, | |
| 623 | .freebsd, | |
| 624 | .netbsd, | |
| 625 | .dragonfly, | |
| 626 | => self.fs_thread.wait(), | |
| 627 | else => {}, | |
| 628 | } | |
| 627 | 629 | } |
| 628 | 630 | |
| 629 | 631 | for (self.extra_threads) |extra_thread| { |