1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:07:36 +00:00

Kernel+LibC+UserspaceEmulator: Remove sys$dup() and sys$dup2()

We can just implement these in userspace, so yay two less syscalls!
This commit is contained in:
Andreas Kling 2020-08-15 01:17:00 +02:00
parent 5f3d384454
commit bf247fb45f
7 changed files with 15 additions and 74 deletions

View file

@ -138,7 +138,6 @@ private:
ssize_t virt$getrandom(FlatPtr buffer, size_t buffer_size, unsigned int flags);
int virt$sleep(unsigned);
int virt$chdir(FlatPtr, size_t);
int virt$dup2(int, int);
int virt$getpgrp();
int virt$getpgid(pid_t);
int virt$setpgid(pid_t pid, pid_t pgid);