aboutsummaryrefslogtreecommitdiffstats
path: root/thread.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-13 05:30:44 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-13 05:30:44 +0000
commit241ac28a04c4c7eda73c95586ad0c44abf25837a (patch)
tree0a8080e36c1fabf84e6a844d8a68fa35e8704983 /thread.c
parent25ba94c65d2d8c2305e370f3782cece197d06715 (diff)
downloadruby-241ac28a04c4c7eda73c95586ad0c44abf25837a.tar.gz
thread.c: rb_thread_fd_close [ci skip]
* thread.c (rb_thread_fd_close): remove deprecated. a couple of external libraries used it. [ruby-core:80078] [Bug #13304] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57950 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/thread.c b/thread.c
index 736946bf68..7a902d2751 100644
--- a/thread.c
+++ b/thread.c
@@ -2197,15 +2197,10 @@ rb_notify_fd_close(int fd)
return busy;
}
-NORETURN(void rb_thread_fd_close(int fd));
void
rb_thread_fd_close(int fd)
{
-#ifdef DONT_USE
while (rb_notify_fd_close(fd));
-#else
- DEPRECATED_INTERNAL_FEATURE("rb_thread_fd_close");
-#endif
}
/*