SignalMsi

Trait SignalMsi 

Source
pub trait SignalMsi: Send + Sync {
    // Required method
    fn signal_msi(&self, rid: u32, address: u64, data: u32);
}
Expand description

An object that can signal MSI interrupts.

Required Methods§

Source

fn signal_msi(&self, rid: u32, address: u64, data: u32)

Signals a message-signaled interrupt at the specified address with the specified data.

rid is the requester ID of the PCI device sending the interrupt.

Implementors§