Constant SUPPORTED_SIGNALS
pub const SUPPORTED_SIGNALS: &'static [Signal];
Available on crate feature
dep_sysinfo
only.Expand description
Returns the list of the supported signals on this system (used by
Process::kill_with
).
use sysinfo::{System, SUPPORTED_SIGNALS};
println!("supported signals: {:?}", SUPPORTED_SIGNALS);