twizzler_abi/slot.rs
1//! Manage slots in the address space. Currently not finished.
2#[allow(dead_code)]
3pub const RESERVED_TEXT: usize = 0;
4#[allow(dead_code)]
5pub const RESERVED_DATA: usize = 1;
6#[allow(dead_code)]
7pub const RESERVED_STACK: usize = 2;
8#[allow(dead_code)]
9pub const RESERVED_KERNEL_INIT: usize = 3;
10#[allow(dead_code)]
11pub const RESERVED_IMAGE: usize = 4;
12#[allow(dead_code)]
13pub const ALLOC_START: usize = 10;