pub trait QEMUExit {
    fn exit(&self, code: u32) -> !;
    fn exit_success(&self) -> !;
    fn exit_failure(&self) -> !;
}

Required Methods

Exit with specified return code.

Note: For X86, code is binary-OR’ed with 0x1 inside QEMU.

Exit QEMU using EXIT_SUCCESS, aka 0, if possible.

Note: Not possible for X86.

Exit QEMU using EXIT_FAILURE, aka 1.

Implementors