mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 02:37:36 +00:00
Implemented sys$execve().
It's really crufty, but it basically works!
This commit is contained in:
parent
b59ce22fc5
commit
202bdb553c
9 changed files with 215 additions and 21 deletions
|
@ -9,6 +9,7 @@ extern char** environ;
|
|||
|
||||
inline int getpagesize() { return 4096; }
|
||||
pid_t fork();
|
||||
int execve(const char* filename, const char** argv, const char** envp);
|
||||
pid_t getsid(pid_t);
|
||||
pid_t setsid();
|
||||
int setpgid(pid_t pid, pid_t pgid);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue