proc_status/
proc_ref.rs

1
2
3/// the reference to a process, either the symbolic "self"
4/// or a process id
5#[derive(Clone, Copy)]
6pub enum ProcRef {
7    ProcSelf, // proc/self, it the current process
8    ProcId(usize),
9}
10
11