mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/socket/init.c (rsock_connect): add to care EINTR. based
on a patch from Eric Wong at [ruby-core:35621][Bug #4555] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31405 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4d88169267
commit
49b4510cd1
2 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Mon May 2 00:36:12 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
||||
|
||||
* ext/socket/init.c (rsock_connect): add to care EINTR. based
|
||||
on a patch from Eric Wong at [ruby-core:35621][Bug #4555]
|
||||
|
||||
Sun May 1 01:06:24 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
||||
|
||||
* thread.c (rb_thread_select): release GVL while waiting select().
|
||||
|
|
|
@ -383,6 +383,12 @@ rsock_connect(int fd, const struct sockaddr *sockaddr, int len, int socks)
|
|||
status = (int)BLOCKING_REGION_FD(func, &arg);
|
||||
if (status < 0) {
|
||||
switch (errno) {
|
||||
case EINTR:
|
||||
#if defined(ERESTART)
|
||||
case ERESTART:
|
||||
#endif
|
||||
continue;
|
||||
|
||||
case EAGAIN:
|
||||
#ifdef EINPROGRESS
|
||||
case EINPROGRESS:
|
||||
|
|
Loading…
Reference in a new issue