changeset 45049 | 513b3ef277a3 |
parent 44981 | cf04f62d1579 |
child 46445 | ca3f73cc3cf4 |
45046:dd3050227a84 | 45049:513b3ef277a3 |
---|---|
1 pub type ExitCode = i32; |
1 pub type ExitCode = i32; |
2 |
|
3 /// Successful exit |
|
4 pub const OK: ExitCode = 0; |
|
5 |
|
6 /// Generic abort |
|
7 pub const ABORT: ExitCode = 255; |
|
2 |
8 |
3 /// Command not implemented by rhg |
9 /// Command not implemented by rhg |
4 pub const UNIMPLEMENTED_COMMAND: ExitCode = 252; |
10 pub const UNIMPLEMENTED_COMMAND: ExitCode = 252; |