Skip to main content

SYS_SIGQUEUE

Constant SYS_SIGQUEUE 

Source
pub const SYS_SIGQUEUE: usize = 327;
Expand description

Queue a signal with associated data to a process.

  • pid: target process ID
  • signum: signal number
  • sigval_ptr: pointer to Sigval union (integer or pointer)

Unlike SYS_KILL, this delivers the signal asynchronously with data.