Re-exports§
pub use handler::Never;
Macros§
- memory_
region_ symbol - Declares a symbol via which the
microkit
tool can inject a memory region’s address, and returns the memory region’s address at runtime. - var
- Declares a symbol via which the
microkit
tool can inject a variable declared by e.g.setvar_vaddr
, and returns the variable’s value at runtime.
Structs§
- Channel
- A channel between this protection domain and another, identified by a channel index.
- Child
- A handle to a child protection domain, identified by a child protection domain index.
- Deferred
Action - An action deferred for syscall coalescing using
Handler::take_deferred_action
. - Deferred
Action Slot - Utility type for implementing
Handler::take_deferred_action
. - IrqAck
Error - Error type returned by
Channel::irq_ack
. - Message
Info - Corresponds to
microkit_msginfo
. - Null
Handler - A
Handler
implementation which does not override any of the default method implementations.
Enums§
- Deferred
Action Interface - A channel interface for which actions can be deferred.
- Infallible
- The error type for errors that can never happen.
Traits§
- Handler
- Trait for the application-specific part of a protection domain’s main loop.
Functions§
- get_mr
- Corresponds to
microkit_mr_get
. - ipc_
buffer_ ptr - Returns a pointer to the protection domain’s
sel4::IpcBuffer
. - pd_
is_ passive - Returns whether this protection domain is a passive server.
- pd_name
- Returns the name of this protection domain.
- set_mr
- Corresponds to
microkit_mr_set
. - with_
msg_ bytes - Provides access to the protection domain’s message registers, viewed as an array of bytes.
- with_
msg_ bytes_ mut - Provides mutable access to the protection domain’s message registers, viewed as an array of bytes.
- with_
msg_ regs - Provides access to the protection domain’s message registers.
- with_
msg_ regs_ mut - Provides mutable access to the protection domain’s message registers.
Type Aliases§
- Message
Label - Type alias for
MessageInfo
labels. - Message
Register Value - Type alias for message register values.