pub trait RequestInterrupt {
// Required method
fn request_interrupt(&mut self, vector: u32, auto_eoi: bool);
}
Expand description
Trait for requesting an interrupt.
Required Methods§
Sourcefn request_interrupt(&mut self, vector: u32, auto_eoi: bool)
fn request_interrupt(&mut self, vector: u32, auto_eoi: bool)
Requests an interrupt with the specified vector.
If auto_eoi
is true, then the APIC should not set ISR when the
interrupt is delivered.