Home
last modified time | relevance | path

Searched refs:DestinationShorthand (Results 1 – 1 of 1) sorted by relevance

/DragonOS-0.1.8/kernel/src/arch/x86_64/interrupt/
Dipi.rs60 impl Into<x86::apic::DestinationShorthand> for ArchIpiTarget {
61 fn into(self) -> x86::apic::DestinationShorthand { in into() argument
63 ArchIpiTarget::Specified(_) => x86::apic::DestinationShorthand::NoShorthand, in into()
64 ArchIpiTarget::Current => x86::apic::DestinationShorthand::Myself, in into()
65 ArchIpiTarget::All => x86::apic::DestinationShorthand::AllIncludingSelf, in into()
66 ArchIpiTarget::Other => x86::apic::DestinationShorthand::AllExcludingSelf, in into()
92 let shorthand: x86::apic::DestinationShorthand = target.into(); in send_ipi()