1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 13:55:08 +00:00

Kernel: Remove outdated FIXME about EINTR in select()

This is actually already implemented. :^)
This commit is contained in:
Andreas Kling 2019-11-27 15:31:23 +01:00
parent 0adbacf59e
commit bd86ebbcc0

View file

@ -2103,7 +2103,6 @@ clock_t Process::sys$times(tms* times)
int Process::sys$select(const Syscall::SC_select_params* params)
{
// FIXME: Return -EINTR if a signal is caught.
// FIXME: Return -EINVAL if timeout is invalid.
if (!validate_read_typed(params))
return -EFAULT;