Function send_rt

Source
pub fn send_rt(
    signal: impl Into<Option<u32>>,
    pid: impl Into<u32>,
) -> Result<()>
Available on Unix and crate feature signals only.
Expand description

Sends the specified real-time signal to the specified process. If the specified signal is None, no signal is sent and only a privilege check is performed instead.

ยงExample

use interprocess::os::unix::signal::{self, SignalType};
use std::process;

// Send a real-timne signal 0 to the calling process.
signal::send_rt(0, process::id())?;