pub fn sys_rt_sigqueueinfo(
_locked: &mut Locked<Unlocked>,
current_task: &CurrentTask,
tgid: pid_t,
unchecked_signal: UncheckedSignal,
siginfo_ref: UserAddress,
) -> Result<(), Errno>Expand description
The rt_sigqueueinfo syscall sends a signal with a payload to a process.
§Args
tgid: The thread group ID of the process to send the signal to.unchecked_signal: The signal to send.siginfo_ref: A pointer to asiginfo_tstructure that contains the signal payload.
§Returns
Ok(()) on success. Otherwise, returns an Errno with the error code.