Crates.io | sel4-start |
lib.rs | sel4-start |
version | 0.0.28 |
source | src |
created_at | 2015-12-18 08:41:36.168166 |
updated_at | 2017-04-24 04:42:36.060356 |
description | Crate defining the entry point to the initial thread on seL4 |
homepage | |
repository | https://gitlab.com/robigalia/sel4-start |
max_upload_size | |
id | 3699 |
size | 33,241 |
This crate defines the entry point _sel4_start
and a Rust #[lang = "start"]
entry point which the _sel4_start
calls after initializing the
global BootInfo
instance which is also defined in this crate. This is used
only for the "initial thread" of the system, which is the first thread that
seL4 starts. In the BootInfo
are many wonderous things. See the seL4
manual, table 9.2 on
page 39, for canonical information about the content of the BootInfo
.
The initial thread is created with 16K of stack space.
Complete.