summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-07-09 19:36:49 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-07-09 19:36:49 +0000
commit11fdbaddf29d9566104439e1cf74b5cb053b741d (patch)
tree51dbe98123780e77c464610664e22b429d403a96 /thread.c
parentd679034a865181cd26d16291a94f71914e92e31e (diff)
merge revision(s) 59030,59031: [Backport #13638]
thread.c: avoid busy looping on rb_thread_fd_close We no longer use it this function, but extensions do, and we need to ensure it continues to work for them. * thread.c (rb_thread_fd_close): schedule other threads in loop * ext/-test-/thread_fd_close/thread_fd_close.c: new file * ext/-test-/thread_fd_close/depend: ditto * ext/-test-/thread_fd_close/extconf.rb: ditto * test/-ext-/thread_fd_close/test_thread_fd_close.rb: new test * properties. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_4@59295 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/thread.c b/thread.c
index 2691fd835d..4fb46dc43a 100644
--- a/thread.c
+++ b/thread.c
@@ -2227,7 +2227,7 @@ rb_notify_fd_close(int fd)
void
rb_thread_fd_close(int fd)
{
- while (rb_notify_fd_close(fd));
+ while (rb_notify_fd_close(fd)) rb_thread_schedule();
}
/*