1
0
Fork 0
forked from AbleOS/ableos
ableos/sysdata/libraries/stn/src/process.hb

12 lines
354 B
Plaintext

// ! will be rewritten to take a file object when filesystem is exist
// returns PID
$spawn := fn(proc_exe: ^u8, length: uint): uint {
return @eca(3, 6, proc_exe, length)
}
/* TODO:
- Spawn an empty process
- Call a function to load bytes into that process from a function
Or
- Manually fill the bytes in
- Execute the process via a run type command */