summaryrefslogtreecommitdiff
path: root/thread_pthread.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-11-08 15:31:05 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-11-08 15:31:05 +0000
commit641f43de973d51a7d463b067833d4a71706d6c5c (patch)
tree555a72d40d2a2645020a675fc085b716dd097f2b /thread_pthread.c
parentb2390fb1cc3f38ca4516394034c8680eeb01a64c (diff)
* thread_pthread.c (thread_timer): checks working flags again.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20160 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread_pthread.c')
-rw-r--r--thread_pthread.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/thread_pthread.c b/thread_pthread.c
index 5fc335b304..7ddfcea7b0 100644
--- a/thread_pthread.c
+++ b/thread_pthread.c
@@ -679,9 +679,9 @@ thread_timer(void *dummy)
int err;
native_mutex_lock(&timer_thread_lock);
- native_cond_signal(&timer_thread_cond);
+ native_cond_broadcast(&timer_thread_cond);
#define WAIT_FOR_10MS() native_cond_timedwait(&timer_thread_cond, &timer_thread_lock, get_ts(&ts, PER_NANO/100))
- while ((err = WAIT_FOR_10MS()) != 0 && err != EINTR) {
+ while (system_working > 0 && (err = WAIT_FOR_10MS()) != 0 && err != EINTR) {
if (err != ETIMEDOUT) {
rb_bug("thread_timer/timedwait: %d", err);
}
@@ -729,12 +729,17 @@ rb_thread_create_timer_thread(void)
rb_disable_interrupt(); /* only timer thread recieve signal */
}
-static void
+static int
native_stop_timer_thread(void)
{
+ int stopped;
native_mutex_lock(&timer_thread_lock);
- native_cond_signal(&timer_thread_cond);
+ stopped = --system_working <= 0;
+ if (stopped) {
+ native_cond_signal(&timer_thread_cond);
+ }
native_mutex_unlock(&timer_thread_lock);
+ return stopped;
}
#endif /* THREAD_SYSTEM_DEPENDENT_IMPLEMENTATION */