1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 05:47:35 +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

@ -253,8 +253,6 @@ u32 Emulator::virt_syscall(u32 function, u32 arg1, u32 arg2, u32 arg3)
switch (function) {
case SC_chdir:
return virt$chdir(arg1, arg2);
case SC_dup2:
return virt$dup2(arg1, arg2);
case SC_access:
return virt$access(arg1, arg2, arg3);
case SC_waitid:
@ -1350,9 +1348,4 @@ int Emulator::virt$chdir(FlatPtr path, size_t path_length)
return syscall(SC_chdir, host_path.data(), host_path.size());
}
int Emulator::virt$dup2(int old_fd, int new_fd)
{
return syscall(SC_dup2, old_fd, new_fd);
}
}