We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents afaf17c + 1cc2566 commit d576936Copy full SHA for d576936
1 file changed
src/tri/job_system.zig
@@ -572,7 +572,9 @@ pub const Job = struct {
572
/// Deinitialize job
573
fn deinit(self: *Job) void {
574
if (self.child_process) |*child| {
575
- _ = child.kill() catch {};
+ _ = child.kill() catch |err| {
576
+ std.log.warn("failed to kill child process: {s}", .{@errorName(err)});
577
+ };
578
_ = child.wait() catch {};
579
}
580
0 commit comments