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
Updated by normalperson (Eric Wong) over 13 years ago
Eric Wong normalperson@yhbt.net wrote:
Test script attached maxes out my CPU.
And with this I also noticed signals aren't handled gracefully
with IO.copy_stream. Fixing now.
--
Eric Wong
Updated by normalperson (Eric Wong) over 13 years ago
Eric Wong normalperson@yhbt.net wrote:
Eric Wong normalperson@yhbt.net wrote:
Test script attached maxes out my CPU.
And with this I also noticed signals aren't handled gracefully
with IO.copy_stream. Fixing now.
Reported separately: http://redmine.ruby-lang.org/issues/4683
--
Eric Wong
Updated by naruse (Yui NARUSE) over 13 years ago
- Status changed from Open to Assigned
- Assignee set to akr (Akira Tanaka)
Updated by akr (Akira Tanaka) over 13 years ago
- Status changed from Assigned to Closed