diff --git a/ChangeLog b/ChangeLog index 954bb406e9..b305580caf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,3 @@ -Wed May 30 04:29:43 2007 Nobuyoshi Nakada - - * thread_pthread.ci (thread_timer): timer thread should not - receive any signals. submitted by Sylvain Joyeux. - [ruby-core:08546] - Wed May 30 04:18:37 2007 Nobuyoshi Nakada * eval.c (rb_eval_cmd): just return if no exceptions. diff --git a/thread_pthread.ci b/thread_pthread.ci index 61ef65a478..43dac0be5a 100644 --- a/thread_pthread.ci +++ b/thread_pthread.ci @@ -462,11 +462,6 @@ static void timer_thread_function(void); static void * thread_timer(void *dummy) { - sigset_t all_signals; - - sigfillset(&all_signals); - pthread_sigmask(SIG_BLOCK, &all_signals, 0); - while (system_working) { #ifdef HAVE_NANOSLEEP struct timespec req, rem;