##// END OF EJS Templates
procutil: extend gui test to detect wayland session (issue6479)
procutil: extend gui test to detect wayland session (issue6479)

File last commit:

r47174:ca3f73cc default
r47201:128a17d8 stable
Show More
exitcode.rs
10 lines | 211 B | application/rls-services+xml | RustLexer
pub type ExitCode = i32;
/// Successful exit
pub const OK: ExitCode = 0;
/// Generic abort
pub const ABORT: ExitCode = 255;
/// Command not implemented by rhg
pub const UNIMPLEMENTED_COMMAND: ExitCode = 252;