pub enum IpiTarget {
Current {
cpu_id: usize,
},
Other {
cpu_id: usize,
},
AllExceptCurrent {
cpu_id: usize,
cpu_num: usize,
},
}Available on crate feature
irq only.Expand description
Target specification for inter-processor interrupts (IPIs).
Variants§
Current
Send to the current CPU.
Other
Send to a specific CPU.
AllExceptCurrent
Send to all other CPUs.