summaryrefslogtreecommitdiff
path: root/exercises/104_threading.zig
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2025-11-01 15:57:29 +0100
committerChris Boesch <chrboesch@noreply.codeberg.org>2025-11-01 15:57:29 +0100
commit6c8f4ef507b72bc1dd6d3c4dfeb904a88938b578 (patch)
tree0cdbf1f779a8dc93c499c9e9fb2611f5f809922e /exercises/104_threading.zig
parent147ff302ecbc534af01004a016fc2c091cba8af4 (diff)
pause slightly extended for faster computers
Diffstat (limited to 'exercises/104_threading.zig')
-rw-r--r--exercises/104_threading.zig2
1 files changed, 1 insertions, 1 deletions
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