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

Kernel: Silence debug spam about select() being interrupted

This commit is contained in:
Andreas Kling 2020-12-20 16:06:52 +01:00
parent e5eda151b4
commit 5505159a94

View file

@ -103,7 +103,9 @@ int Process::sys$select(const Syscall::SC_select_params* user_params)
#endif
if (current_thread->block<Thread::SelectBlocker>(timeout, fds_info).was_interrupted()) {
#ifdef DEBUG_POLL_SELECT
dbg() << "select was interrupted";
#endif
return -EINTR;
}