[][src]Function linux::syscall::rt_sigaction

pub fn rt_sigaction(
    signum: c_int,
    act: Option<&sigaction>,
    old: Option<&mut sigaction>
) -> c_int

Changes or inspects the handler of a signal.

[argument, signum] The signal to modify.

[argument, act] The new handler.

[argument, old] The old handler.

= See also

  • link:man:rt_sigaction(2)