pub fn pid_is_alive(pid: u32) -> bool
Best-effort check whether a PID exists.
On Unix this uses kill(pid, 0) and treats EPERM as alive.
kill(pid, 0)
EPERM