From 27b8ef7ff78f3a7e189c90c641bed4e61c11b76c Mon Sep 17 00:00:00 2001 From: normal Date: Wed, 7 Jun 2017 00:32:02 +0000 Subject: 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 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'thread.c') diff --git a/thread.c b/thread.c index cc6e5533c0..74cdf4f3c7 100644 --- a/thread.c +++ b/thread.c @@ -2230,7 +2230,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(); } /* -- cgit v1.2.3