1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* thread_pthread.c (thread_timer): add to care a spurious wakeup.

When native_cond_timedwait() return 0 by spurious wakeup, we
  don't have to neither 1) call timer_thread_function and 2)
  exit the timer thread.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31926 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kosaki 2011-06-05 12:48:23 +00:00
parent 64097bd733
commit 4010bc1e84
2 changed files with 22 additions and 9 deletions

View file

@ -1,3 +1,10 @@
Sun Jun 5 21:38:51 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
* thread_pthread.c (thread_timer): add to care a spurious wakeup.
When native_cond_timedwait() return 0 by spurious wakeup, we
don't have to neither 1) call timer_thread_function and 2)
exit the timer thread.
Sun Jun 5 17:50:01 2011 Tadayoshi Funaba <tadf@dotrb.org>
* ext/date/date_core.c (m_real_cwyear): new. derived from m_cwyear.

View file

@ -993,27 +993,33 @@ static void *
thread_timer(void *dummy)
{
struct timespec timeout_10ms;
struct timespec timeout;
timeout_10ms.tv_sec = 0;
timeout_10ms.tv_nsec = 10 * 1000 * 1000;
native_mutex_lock(&timer_thread_lock);
native_cond_broadcast(&timer_thread_cond);
timeout = native_cond_timeout(&timer_thread_cond, timeout_10ms);
while (system_working > 0) {
int err;
struct timespec timeout;
timeout = native_cond_timeout(&timer_thread_cond, timeout_10ms);
err = native_cond_timedwait(&timer_thread_cond, &timer_thread_lock,
&timeout);
if (err == ETIMEDOUT);
else if (err == 0) {
if (rb_signal_buff_size() == 0) break;
if (err == 0) {
/*
* Spurious wakeup or native_stop_timer_thread() was called.
* We need to recheck a system_working state.
*/
}
else rb_bug_errno("thread_timer/timedwait", err);
ping_signal_thread_list();
timer_thread_function(dummy);
else if (err == ETIMEDOUT) {
ping_signal_thread_list();
timer_thread_function(dummy);
timeout = native_cond_timeout(&timer_thread_cond, timeout_10ms);
}
else
rb_bug_errno("thread_timer/timedwait", err);
}
native_mutex_unlock(&timer_thread_lock);
return NULL;