• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 use rustix::process::*;
2 
3 #[test]
test_parent_process_death_signal()4 fn test_parent_process_death_signal() {
5     dbg!(parent_process_death_signal().unwrap());
6 }
7 
8 #[test]
test_trace_status()9 fn test_trace_status() {
10     dbg!(trace_status(None).unwrap());
11 }
12