1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:37:35 +00:00

Get rid of redundant sys$spawn now that we have fork+exec.

This commit is contained in:
Andreas Kling 2018-11-09 10:22:14 +01:00
parent 3e0a0dd7ed
commit 8249c086c3
8 changed files with 0 additions and 71 deletions

View file

@ -135,7 +135,6 @@ public:
int sys$geterror() { return m_error; }
void sys$exit(int status) NORETURN;
void sys$sigreturn() NORETURN;
pid_t sys$spawn(const char* path, const char** args, const char** envp);
pid_t sys$waitpid(pid_t, int* wstatus, int options);
void* sys$mmap(const Syscall::SC_mmap_params*);
int sys$munmap(void*, size_t size);