mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* thread.c (rb_thread_io_blocking_region): new function to run
blocking region with GIL released, for fd. * thread.c (rb_thread_fd_close): implement. [ruby-core:35203] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30852 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
dda8de065c
commit
58b325366d
11 changed files with 94 additions and 13 deletions
|
@ -249,7 +249,7 @@ unix_send_io(VALUE sock, VALUE val)
|
|||
|
||||
arg.fd = fptr->fd;
|
||||
rb_thread_fd_writable(arg.fd);
|
||||
if ((int)BLOCKING_REGION(sendmsg_blocking, &arg) == -1)
|
||||
if ((int)BLOCKING_REGION_FD(sendmsg_blocking, &arg) == -1)
|
||||
rb_sys_fail("sendmsg(2)");
|
||||
|
||||
return Qnil;
|
||||
|
@ -335,7 +335,7 @@ unix_recv_io(int argc, VALUE *argv, VALUE sock)
|
|||
|
||||
arg.fd = fptr->fd;
|
||||
rb_thread_wait_fd(arg.fd);
|
||||
if ((int)BLOCKING_REGION(recvmsg_blocking, &arg) == -1)
|
||||
if ((int)BLOCKING_REGION_FD(recvmsg_blocking, &arg) == -1)
|
||||
rb_sys_fail("recvmsg(2)");
|
||||
|
||||
#if FD_PASSING_BY_MSG_CONTROL
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue