commit 281a9a60f07afaf1b72bc66b2bb3c925b3c908f4 (tree)
parent 1ae969e5299ea71231e7045110332b23989e653c
Author: kprotty <kbutcher6200@gmail.com>
Date: Sun, 20 Jun 2021 13:45:16 -0500
std.Thread: fixup ThreadPool.zig
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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,