Implemented sys$execve().

It's really crufty, but it basically works!
This commit is contained in:
Andreas Kling 2018-11-03 01:49:40 +01:00
commit 202bdb553c
Notes: sideshowbarker 2024-07-19 18:34:17 +09:00
9 changed files with 215 additions and 21 deletions

View file

@ -48,6 +48,7 @@ enum Function {
PosixTcsetpgrp = 0x2016,
PosixTcgetpgrp = 0x2017,
PosixFork = 0x2018,
PosixExecve = 0x2019,
};
void initialize();