Enum tartan_arch::aarch64::interrupt::Kind
source · #[repr(u8)]
pub enum Kind {
Synchronous,
Interrupt,
FastInterrupt,
SystemError,
}
Available on AArch64 only.
Expand description
The kind of exception being handled: sync, IRQ, FIQ, SError.
Variants§
Synchronous
A standard exception traceable to a specific instruction.
Interrupt
An external interrupt (IRQ).
FastInterrupt
An external interrupt through the higher-priority fast interrupt (FIQ) mechanism.
SystemError
An internal error with the processor (SError).