[][src]Function linux::syscall::signalfd4

pub fn signalfd4(fd: c_int, set: &sigset_t, flags: c_int) -> c_int

Creates or modified a signalfd.

[argument, fd] The file descriptor to modify.

[argument, set] The set of signals to monitor.

[argument, flags] The flags used to create the fd.

= Remarks

Unless lrs was compiled with the no-auto-cloexec flag, this function automatically adds the SFD_CLOEXEC flag.

= See also

  • link:man:signalfd4(2)