Begin defining the process/thread api
This commit is contained in:
parent
e3661e7848
commit
a092a57483
6 changed files with 31 additions and 18 deletions
|
|
@ -12,8 +12,9 @@ uint64_t ZDebug(const char* message) {
|
|||
return SysCall1(Z_DEBUG_PRINT, message);
|
||||
}
|
||||
|
||||
uint64_t ZProcessSpawn(uint64_t cap_id, uint64_t elf_base, uint64_t elf_size) {
|
||||
ZProcessSpawnReq req{
|
||||
uint64_t ZProcessSpawnElf(uint64_t cap_id, uint64_t elf_base,
|
||||
uint64_t elf_size) {
|
||||
ZProcessSpawnElfReq req{
|
||||
.cap_id = cap_id,
|
||||
.elf_base = elf_base,
|
||||
.elf_size = elf_size,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue