Skip to main content

signal_engine/
lib.rs

1//! Signal impact analysis and helpers for presenting safe signal choices.
2//!
3//! - `impact`: pre-flight analysis of TCP connections, children, file locks, and
4//!   systemd units to help choose between graceful vs forceful signals.
5//! - `signals`: canonical menu of user-facing signals and descriptions.
6//! - `systemd`: unit detection from `/proc/<pid>/cgroup`.
7
8pub mod impact;
9pub mod signals;
10pub mod systemd;