From 6c8f4ef507b72bc1dd6d3c4dfeb904a88938b578 Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Sat, 1 Nov 2025 15:57:29 +0100 Subject: [PATCH] pause slightly extended for faster computers --- exercises/104_threading.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/104_threading.zig b/exercises/104_threading.zig index d0a640b..7c5e0f7 100644 --- a/exercises/104_threading.zig +++ b/exercises/104_threading.zig @@ -106,7 +106,7 @@ pub fn main() !void { // After the threads have been started, // they run in parallel and we can still do some work in between. - std.posix.nanosleep(1, 0); + std.posix.nanosleep(4, 0); std.debug.print("Some weird stuff, after starting the threads.\n", .{}); } // After we have left the closed area, we wait until