Crate magenta [−] [src]
Type-safe bindings for Magenta kernel syscalls.
Structs
Channel |
An object representing a Magenta channel. |
Event |
An object representing a Magenta event object. |
EventPair |
An object representing a Magenta event pair. |
Fifo |
An object representing a Magenta fifo. |
Handle |
An object representing a Magenta handle. |
HandleRef |
A borrowed reference to a |
Job |
An object representing a Magenta job. |
MessageBuf |
A buffer for receiving messages from a channel. |
Packet |
A packet sent through a port. This is a type-safe wrapper for mx_port_packet_t. |
Port |
An object representing a Magenta port. |
Process |
An object representing a Magenta process. |
SignalPacket |
Contents of a signal packet (one generated by the kernel). This is a type-safe wrapper for mx_packet_signal_t. |
Socket |
An object representing a Magenta socket. |
Thread |
An object representing a Magenta thread. |
Timer |
An object representing a Magenta event pair. |
UserPacket |
Contents of a user packet (one sent by |
Vmo |
An object representing a Magenta virtual memory object. |
WaitItem |
A "wait item" containing a handle reference and information about what signals
to wait on, and, on return from |
Enums
ChannelOpts |
Options for creating a channel. |
ClockId |
An identifier to select a particular clock. See mx_time_get for more information about the possible values. |
EventOpts |
Options for creating an event object. |
EventPairOpts |
Options for creating an event pair. |
FifoOpts |
Options for creating a fifo pair. |
PacketContents |
The contents of a |
PortOpts |
Options for creating a port. |
SocketOpts |
Options for creating a socket pair. |
SocketReadOpts |
Options for reading from a socket. |
SocketWriteOpts |
Options for writing into a socket. |
Status |
A status code returned from the Magenta kernel. |
TimerOpts |
Options for creating a timer. |
VmoCloneOpts | |
VmoOp | |
VmoOpts |
Options for creating virtual memory objects. None supported yet. |
WaitAsyncOpts |
Options for wait_async. |
Constants
Traits
AsHandleRef |
A trait to get a reference to the underlying handle of an object. |
Cookied |
A trait implemented by all handles for objects which can have a cookie attached. |
HandleBased |
A trait implemented by all handle-based types. |
Peered |
A trait implemented by all handles for objects which have a peer. |
Functions
cprng_add_entropy |
Mix the given entropy into the kernel CPRNG. |
cprng_draw |
Draw random bytes from the kernel's CPRNG to fill the given buffer. Returns the actual number of bytes drawn, which may sometimes be less than the size of the buffer provided. |
deadline_after |
Compute a deadline for the time in the future that is the given |
nanosleep |
Sleep until the given deadline. |
object_wait_many |
Wait on multiple handles. The success return value is a bool indicating whether one or more of the provided handle references was closed during the wait. |
size_to_u32_sat | |
ticks_get |
Read the number of high-precision timer ticks since boot. These ticks may be processor cycles, high speed timer, profiling timer, etc. They are not guaranteed to continue advancing when the system is asleep. |
ticks_per_second |
Return the number of high-precision timer ticks in a second. |
time_get |
Get the current time, from the specific clock id. |
usize_into_u32 |
Type Definitions
Rights |
Rights associated with a handle. |
Signals |
Signals that can be waited upon. |