Zig 0.17.0-dev (Split by item)

This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.

Sigaction

Kernel Sigaction wrapper for the actual ABI k_sigaction. The Zig linux.zig wrapper library still does some pre-processing on sigaction() calls (to add the restorer field).

Renamed from sigaction to Sigaction to avoid conflict with the syscall.

linux.Sigaction
pub const Sigaction = struct

File

lib/std/os/linux.zig:6693

Code

pub const Sigaction = struct {
    pub const handler_fn = *align(1) const fn (SIG) callconv(.c) void;
    pub const sigaction_fn = *const fn (SIG, *const siginfo_t, ?*anyopaque) callconv(.c) void;

    handler: extern union {
        handler: ?handler_fn,
        sigaction: ?sigaction_fn,
    },
    mask: sigset_t,
    flags: switch (native_arch) {
        .mips, .mipsel, .mips64, .mips64el => c_uint,
        .alpha => c_int,
        else => c_ulong,
    },
}