mirror of
https://codeberg.org/ziglings/exercises.git
synced 2025-08-03 15:15:37 +00:00
Fixed 104
This commit is contained in:
parent
0d06220ec5
commit
f461986896
|
@ -106,7 +106,7 @@ pub fn main() !void {
|
||||||
|
|
||||||
// After the threads have been started,
|
// After the threads have been started,
|
||||||
// they run in parallel and we can still do some work in between.
|
// they run in parallel and we can still do some work in between.
|
||||||
std.time.sleep(1500 * std.time.ns_per_ms);
|
std.Thread.sleep(1500 * std.time.ns_per_ms);
|
||||||
std.debug.print("Some weird stuff, after starting the threads.\n", .{});
|
std.debug.print("Some weird stuff, after starting the threads.\n", .{});
|
||||||
}
|
}
|
||||||
// After we have left the closed area, we wait until
|
// After we have left the closed area, we wait until
|
||||||
|
@ -117,12 +117,12 @@ pub fn main() !void {
|
||||||
// This function is started with every thread that we set up.
|
// This function is started with every thread that we set up.
|
||||||
// In our example, we pass the number of the thread as a parameter.
|
// In our example, we pass the number of the thread as a parameter.
|
||||||
fn thread_function(num: usize) !void {
|
fn thread_function(num: usize) !void {
|
||||||
std.time.sleep(200 * num * std.time.ns_per_ms);
|
std.Thread.sleep(200 * num * std.time.ns_per_ms);
|
||||||
std.debug.print("thread {d}: {s}\n", .{ num, "started." });
|
std.debug.print("thread {d}: {s}\n", .{ num, "started." });
|
||||||
|
|
||||||
// This timer simulates the work of the thread.
|
// This timer simulates the work of the thread.
|
||||||
const work_time = 3 * ((5 - num % 3) - 2);
|
const work_time = 3 * ((5 - num % 3) - 2);
|
||||||
std.time.sleep(work_time * std.time.ns_per_s);
|
std.Thread.sleep(work_time * std.time.ns_per_s);
|
||||||
|
|
||||||
std.debug.print("thread {d}: {s}\n", .{ num, "finished." });
|
std.debug.print("thread {d}: {s}\n", .{ num, "finished." });
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user