1
 2
 3
 4
 5
 6
 7
 8
 9
10
11


/// the reference to a process, either the symbolic "self"
/// or a process id
#[derive(Clone, Copy)]
pub enum ProcRef {
    ProcSelf, // proc/self, it the current process
    ProcId(usize),
}