diff options
Diffstat (limited to 'src/thread_pool.zig')
-rw-r--r-- | src/thread_pool.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/thread_pool.zig b/src/thread_pool.zig index da402407e..f287dd866 100644 --- a/src/thread_pool.zig +++ b/src/thread_pool.zig @@ -2,7 +2,7 @@ // https://github.com/kprotty/zap/blob/blog/src/thread_pool.zig const std = @import("std"); -const bun = @import("bun"); +const bun = @import("root").bun; const ThreadPool = @This(); const Futex = @import("./futex.zig"); @@ -614,7 +614,7 @@ fn join(self: *ThreadPool) void { thread.join_event.notify(); } -const Output = @import("bun").Output; +const Output = @import("root").bun.Output; pub const Thread = struct { next: ?*Thread = null, |