re-introduce RUBY_GC_STRESS test removed by YARV.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12549 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2007-06-15 08:38:58 +00:00
Родитель 5cbefb96b9
Коммит e3dd9a78db
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -1047,10 +1047,14 @@ Init_signal(void)
#endif #endif
#ifdef SIGBUS #ifdef SIGBUS
# ifndef RUBY_GC_STRESS
install_sighandler(SIGBUS, sigbus); install_sighandler(SIGBUS, sigbus);
# endif
#endif #endif
#ifdef SIGSEGV #ifdef SIGSEGV
# ifndef RUBY_GC_STRESS
install_sighandler(SIGSEGV, sigsegv); install_sighandler(SIGSEGV, sigsegv);
# endif
#endif #endif
#ifdef SIGPIPE #ifdef SIGPIPE
install_sighandler(SIGPIPE, sigpipe); install_sighandler(SIGPIPE, sigpipe);