We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Entry::handler_addr()
1 parent 0e1587b commit b87ecd0Copy full SHA for b87ecd0
src/structures/idt.rs
@@ -735,8 +735,9 @@ impl<F> Entry<F> {
735
&mut self.options
736
}
737
738
+ /// Returns the virtual address of this IDT entry's handler function as a `u64`.
739
#[inline]
- fn handler_addr(&self) -> u64 {
740
+ pub fn handler_addr(&self) -> u64 {
741
self.pointer_low as u64
742
| (self.pointer_middle as u64) << 16
743
| (self.pointer_high as u64) << 32
0 commit comments