forked from AbleOS/ableos
13 lines
323 B
Plaintext
13 lines
323 B
Plaintext
// returns PID
|
|
$spawn := fn(proc_exe: ^u8, length: uint): uint {
|
|
return @eca(3, 6, proc_exe, length)
|
|
}
|
|
|
|
$fork := fn(): uint return @eca(3, 7)
|
|
|
|
/* 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 */ |