Simplify/fix threading utilities (#21089)

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
taylor.fish
2025-07-18 22:02:36 -07:00
committed by GitHub
parent b5a9d09009
commit a1c0f74037
31 changed files with 513 additions and 1611 deletions

View File

@@ -468,7 +468,7 @@ const strings = bun.strings;
const stringZ = bun.stringZ;
const JSC = bun.JSC;
const NewHTTPContext = bun.http.NewHTTPContext;
const UnboundedQueue = @import("../bun.js/unbounded_queue.zig").UnboundedQueue;
const UnboundedQueue = bun.threading.UnboundedQueue;
const AsyncHTTP = bun.http.AsyncHTTP;
pub const Queue = UnboundedQueue(AsyncHTTP, .next);