From 7ff076d57b20be083de26e807a069ec5ed0eee38 Mon Sep 17 00:00:00 2001 From: nagachika Date: Wed, 20 Mar 2013 13:37:48 +0000 Subject: merge revision(s) 39775: [Backport #8080] * thread.c: disabled _FORTIFY_SOURCE for avoid to hit glibc bug. [Bug #8080] [ruby-core:53349] * test/ruby/test_io.rb (TestIO#test_io_select_with_many_files): test for the above. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@39840 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'thread.c') diff --git a/thread.c b/thread.c index 99406bcd4d..ffb266c64d 100644 --- a/thread.c +++ b/thread.c @@ -42,6 +42,19 @@ */ +/* + * FD_SET, FD_CLR and FD_ISSET have a small sanity check when using glibc + * 2.15 or later and set _FORTIFY_SOURCE > 0. + * However, the implementation is wrong. Even though Linux's select(2) + * support large fd size (>FD_SETSIZE), it wrongly assume fd is always + * less than FD_SETSIZE (i.e. 1024). And then when enabling HAVE_RB_FD_INIT, + * it doesn't work correctly and makes program abort. Therefore we need to + * disable FORTY_SOURCE until glibc fixes it. + */ +#undef _FORTIFY_SOURCE +#undef __USE_FORTIFY_LEVEL +#define __USE_FORTIFY_LEVEL 0 + /* for model 2 */ #include "eval_intern.h" -- cgit v1.2.3