Function sigrtmax [src]

Zig's version of SIGRTMAX. Actually a function.

Prototype

pub fn sigrtmax() u8

Source

pub fn sigrtmax() u8 { return switch (native_os) { .freebsd => 126, .netbsd => 63, else => @truncate(@as(c_uint, @bitCast(private.__libc_current_sigrtmax()))), }; }