Actions
Bug #4680
closed[PATCH] io.c: fix busy wait with sendfile()
Description
io.c: fix busy wait with sendfile()
When combined with a non-blocking descriptor for sendfile(),
select() is used improperly to wait on the writer in the
read FD set along with the reader.
This causes select() to return immediately if src_fd is a
regular file and select() always returns immediately for regular
files (at least under Linux).
Thus, we need to wait on the writer independently of the reader.
Under Linux, we know the reader must must be a regular file if
sendfile() is to be used so we avoid waiting on the reader.
Test script attached maxes out my CPU.
Files
Actions
Like0
Like0Like0Like0Like0