mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 10:37:45 +00:00
Kernel: Silence debug spam about select() being interrupted
This commit is contained in:
parent
e5eda151b4
commit
5505159a94
1 changed files with 2 additions and 0 deletions
|
@ -103,7 +103,9 @@ int Process::sys$select(const Syscall::SC_select_params* user_params)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (current_thread->block<Thread::SelectBlocker>(timeout, fds_info).was_interrupted()) {
|
if (current_thread->block<Thread::SelectBlocker>(timeout, fds_info).was_interrupted()) {
|
||||||
|
#ifdef DEBUG_POLL_SELECT
|
||||||
dbg() << "select was interrupted";
|
dbg() << "select was interrupted";
|
||||||
|
#endif
|
||||||
return -EINTR;
|
return -EINTR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue