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