diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-10-02 14:13:58 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-10-02 14:13:58 +0000 |
commit | 45176dba6183697734bcd8cf6dae614b180428da (patch) | |
tree | 8ecc76cc309c3201a4501b047be7223bf3b2a587 /rubyio.h | |
parent | 1607f1d9fe04214c8457bf0287679691ccd6bf8f (diff) | |
download | ruby-45176dba6183697734bcd8cf6dae614b180428da.tar.gz ruby-45176dba6183697734bcd8cf6dae614b180428da.tar.xz ruby-45176dba6183697734bcd8cf6dae614b180428da.zip |
* io.c (rb_io_wait_readable): handle retryable errors.
* io.c (rb_io_wait_writable): ditto.
* ext/socket/socket.c (bsock_send): ditto.
* ext/socket/socket.c (s_recvfrom): ditto.
* ext/socket/socket.c (s_accept): ditto.
* ext/socket/socket.c (udp_send): ditto.
* ext/socket/getaddrinfo.c (afdl): made private structures constant.
* rubyio.h: prototype; rb_io_wait_readable(), rb_io_wait_writable().
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2921 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'rubyio.h')
-rw-r--r-- | rubyio.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -64,6 +64,8 @@ void rb_io_check_readable _((OpenFile*)); void rb_io_fptr_finalize _((OpenFile*)); void rb_io_synchronized _((OpenFile*)); void rb_io_check_closed _((OpenFile*)); +int rb_io_wait_readable _((int)); +int rb_io_wait_writable _((int)); VALUE rb_io_taint_check _((VALUE)); void rb_eof_error _((void)); |