aboutsummaryrefslogtreecommitdiff
path: root/src/thread_pool.zig
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-04-19 00:01:27 -0700
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-04-19 00:01:27 -0700
commitea47ed0ee5969d31e03c55ba3bc384466615e513 (patch)
treef7e40627a41bfbdb626ed4d9fd2fe9adb26710df /src/thread_pool.zig
parent36f9fd607a238fc029d64cc27a26b203a856cbbd (diff)
downloadbun-ea47ed0ee5969d31e03c55ba3bc384466615e513.tar.gz
bun-ea47ed0ee5969d31e03c55ba3bc384466615e513.tar.zst
bun-ea47ed0ee5969d31e03c55ba3bc384466615e513.zip
Fix broken autocomplete
Diffstat (limited to 'src/thread_pool.zig')
-rw-r--r--src/thread_pool.zig4
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,