Commit 281a9a60f0

kprotty <kbutcher6200@gmail.com>
2021-06-20 20:45:16
std.Thread: fixup ThreadPool.zig
1 parent 1ae969e
Changed files (1)
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,