1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

rdoc update.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19759 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2008-10-11 13:44:31 +00:00
parent d9fdf58aaa
commit 43f910a9aa

20
io.c
View file

@ -1801,6 +1801,16 @@ io_readpartial(int argc, VALUE *argv, VALUE io)
* read_nonblock reads from the buffer like readpartial.
* In this case, read(2) is not called.
*
* read_nonblock can emulate blocking read as follows.
*
* begin
* result = io.read_nonblock(maxlen)
* rescue Errno::EINTR
* retry
* rescue Errno::EWOULDBLOCK, Errno::EAGAIN
* IO.select([io])
* retry
* end
*/
static VALUE
@ -1832,6 +1842,16 @@ io_read_nonblock(int argc, VALUE *argv, VALUE io)
*
* If the write buffer is not empty, it is flushed at first.
*
* write_nonblock can emulate blocking write as follows.
*
* begin
* result = io.write_nonblock(string)
* rescue Errno::EINTR
* retry
* rescue Errno::EWOULDBLOCK, Errno::EAGAIN
* IO.select(nil, [io])
* retry
* end
*/
static VALUE