move datastructures to dedicated "datastruct" package

This commit is contained in:
Mitchell Hashimoto
2024-11-07 14:38:54 -08:00
parent aed51fd0b0
commit a436bd0af6
18 changed files with 29 additions and 21 deletions

View File

@@ -17,7 +17,7 @@ const builtin = @import("builtin");
const xev = @import("xev");
const crash = @import("../crash/main.zig");
const termio = @import("../termio.zig");
const BlockingQueue = @import("../blocking_queue.zig").BlockingQueue;
const BlockingQueue = @import("../datastruct/main.zig").BlockingQueue;
const Allocator = std.mem.Allocator;
const log = std.log.scoped(.io_thread);