[Teton] Exec process in rust.
This commit is contained in:
parent
8206e671cd
commit
006f9f8ac5
11 changed files with 488 additions and 61 deletions
|
|
@ -2,9 +2,9 @@ use crate::syscall;
|
|||
use crate::zion::z_cap_t;
|
||||
|
||||
// From /zion/include/ztypes.h
|
||||
const Z_INIT_SELF_PROC: u64 = 0x4000_0000;
|
||||
const Z_INIT_SELF_VMAS: u64 = 0x4000_0001;
|
||||
const Z_INIT_ENDPOINT: u64 = 0x4100_0000;
|
||||
pub const Z_INIT_SELF_PROC: u64 = 0x4000_0000;
|
||||
pub const Z_INIT_SELF_VMAS: u64 = 0x4000_0001;
|
||||
pub const Z_INIT_ENDPOINT: u64 = 0x4100_0000;
|
||||
|
||||
pub static mut SELF_PROC_CAP: z_cap_t = 0;
|
||||
pub static mut SELF_VMAS_CAP: z_cap_t = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue