summaryrefslogtreecommitdiff
path: root/src/signal.rs
blob: 2a971805459b1f05cab8d36c725c118fc79c76ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[derive(Copy, Clone, Debug, PartialEq)]
pub enum Signal {
    Interrupt,
    Sleep,
    Fork,
    Halt,
    Debug(Debug),
}

#[derive(Clone, Copy, Debug, PartialEq)]
pub enum Debug {
    Debug1,
    Debug2,
    Debug3,
    Debug4,
    Debug5,
    Debug6,
}