build: update std/debug.zig to zig-0.15.0-dev.877+0adcfd60f

This commit is contained in:
CJ van den Berg 2025-07-01 19:48:48 +02:00
parent b258b2bb54
commit 0a4c1a57b1
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
2 changed files with 38 additions and 28 deletions

View file

@ -124,7 +124,7 @@ pub fn install_crash_handler() void {
}
const act = std.posix.Sigaction{
.handler = .{ .sigaction = handle_crash },
.mask = std.posix.empty_sigset,
.mask = std.posix.sigemptyset(),
.flags = (std.posix.SA.SIGINFO | std.posix.SA.RESTART),
};