diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-02-13 13:39:06 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-03-15 10:48:12 -0700 |
| commit | 5b90fa05a4e5b155f25319713acfc67ad9516c69 (patch) | |
| tree | 6aaffe4ec16f7f6a18539bf2397176e001bf71cf /src/main.zig | |
| parent | 0b744d7d670d00fa865ebd17847cbdc1a909ba70 (diff) | |
| download | zig-5b90fa05a4e5b155f25319713acfc67ad9516c69.tar.gz zig-5b90fa05a4e5b155f25319713acfc67ad9516c69.zip | |
extract ThreadPool and WaitGroup from compiler to std lib
Diffstat (limited to 'src/main.zig')
| -rw-r--r-- | src/main.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.zig b/src/main.zig index 95cfca1463..dd0faa628c 100644 --- a/src/main.zig +++ b/src/main.zig @@ -9,6 +9,7 @@ const Allocator = mem.Allocator; const ArrayList = std.ArrayList; const Ast = std.zig.Ast; const warn = std.log.warn; +const ThreadPool = std.Thread.Pool; const tracy = @import("tracy.zig"); const Compilation = @import("Compilation.zig"); @@ -22,7 +23,6 @@ const translate_c = @import("translate_c.zig"); const clang = @import("clang.zig"); const Cache = std.Build.Cache; const target_util = @import("target.zig"); -const ThreadPool = @import("ThreadPool.zig"); const crash_report = @import("crash_report.zig"); pub const std_options = struct { |
