From 281a9a60f07afaf1b72bc66b2bb3c925b3c908f4 Mon Sep 17 00:00:00 2001 From: kprotty Date: Sun, 20 Jun 2021 13:45:16 -0500 Subject: [PATCH] std.Thread: fixup ThreadPool.zig --- src/ThreadPool.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ThreadPool.zig b/src/ThreadPool.zig index 18818c7d9d..7386e426eb 100644 --- a/src/ThreadPool.zig +++ b/src/ThreadPool.zig @@ -21,7 +21,7 @@ const Runnable = struct { const Worker = struct { pool: *ThreadPool, - thread: *std.Thread, + thread: std.Thread, /// The node is for this worker only and must have an already initialized event /// when the thread is spawned. idle_node: IdleQueue.Node,