thread.c: return the error
* thread.c (rb_wait_for_single_fd): return the error when ppoll failed. fix r51319. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51330 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
8c1a75a3bf
commit
47e0957e21
1
thread.c
1
thread.c
@ -3694,6 +3694,7 @@ rb_wait_for_single_fd(int fd, int events, struct timeval *tv)
|
|||||||
|
|
||||||
RUBY_VM_CHECK_INTS_BLOCKING(th);
|
RUBY_VM_CHECK_INTS_BLOCKING(th);
|
||||||
} while (result < 0 && retryable(errno = lerrno) && poll_update());
|
} while (result < 0 && retryable(errno = lerrno) && poll_update());
|
||||||
|
if (result < 0) return -1;
|
||||||
|
|
||||||
if (fds.revents & POLLNVAL) {
|
if (fds.revents & POLLNVAL) {
|
||||||
errno = EBADF;
|
errno = EBADF;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user