pub type IrqControl<C = NoExplicitInvocationContext> = Cap<IrqControl, C>;
Aliased Type§
struct IrqControl<C = NoExplicitInvocationContext> { /* private fields */ }
Implementations§
Source§impl<C: InvocationContext> IrqControl<C>
impl<C: InvocationContext> IrqControl<C>
Sourcepub fn irq_control_get_trigger(
self,
irq: Word,
edge_triggered: bool,
dst: &AbsoluteCPtr,
) -> Result<()>
pub fn irq_control_get_trigger( self, irq: Word, edge_triggered: bool, dst: &AbsoluteCPtr, ) -> Result<()>
Corresponds to seL4_IRQControl_GetTrigger
.
Source§impl<C: InvocationContext> IrqControl<C>
impl<C: InvocationContext> IrqControl<C>
Sourcepub fn irq_control_get(self, irq: Word, dst: &AbsoluteCPtr) -> Result<()>
pub fn irq_control_get(self, irq: Word, dst: &AbsoluteCPtr) -> Result<()>
Corresponds to seL4_IRQControl_Get
.