authorgravatar for kbutcher6200@gmail.comkprotty <kbutcher6200@gmail.com> 2021-06-20 13:45:16-05:00
committergravatar for kbutcher6200@gmail.comkprotty <kbutcher6200@gmail.com> 2021-06-30 21:49:00-05:00
log281a9a60f07afaf1b72bc66b2bb3c925b3c908f4
tree07cf1410aa23feb63196b7db3baf3ae29c04d302
parent1ae969e5299ea71231e7045110332b23989e653c

std.Thread: fixup ThreadPool.zig


1 files changed, 1 insertions(+), 1 deletions(-)

src/ThreadPool.zig+1-1
......@@ -21,7 +21,7 @@ const Runnable = struct {
2121
2222const Worker = struct {
2323 pool: *ThreadPool,
24 thread: *std.Thread,
24 thread: std.Thread,
2525 /// The node is for this worker only and must have an already initialized event
2626 /// when the thread is spawned.
2727 idle_node: IdleQueue.Node,