mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 19:04:58 +00:00
Kernel+LibC+UserspaceEmulator: Bring back sys$dup2()
This is racy in userspace and non-racy in kernelspace so let's keep it in kernelspace. The behavior change where CLOEXEC is preserved when dup2() is called with (old_fd == new_fd) was good though, let's keep that.
This commit is contained in:
@@ -253,6 +253,8 @@ 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:
|
||||
@@ -1348,4 +1350,9 @@ 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);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user