diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-11-07 16:48:22 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-11-07 16:48:22 +0000 |
| commit | c1182fafd35579dca92eaf089d2c1c210475d4dc (patch) | |
| tree | 570639351ef65d50052011ad75ff29858fd40931 /thread_pthread.c | |
| parent | dbce5d4065124edec0b1a9961d262a304ff88f33 (diff) | |
| download | ruby-c1182fafd35579dca92eaf089d2c1c210475d4dc.tar.gz ruby-c1182fafd35579dca92eaf089d2c1c210475d4dc.tar.xz ruby-c1182fafd35579dca92eaf089d2c1c210475d4dc.zip | |
* thread_pthread.c (rb_thread_create_timer_thread): do not wait never
coming signal if failed to create tiemr thread.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20141 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread_pthread.c')
| -rw-r--r-- | thread_pthread.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/thread_pthread.c b/thread_pthread.c index 46a86192e..5fc335b30 100644 --- a/thread_pthread.c +++ b/thread_pthread.c @@ -719,11 +719,12 @@ rb_thread_create_timer_thread(void) #endif native_mutex_lock(&timer_thread_lock); err = pthread_create(&timer_thread_id, &attr, thread_timer, 0); - native_cond_wait(&timer_thread_cond, &timer_thread_lock); - native_mutex_unlock(&timer_thread_lock); if (err != 0) { + native_mutex_unlock(&timer_thread_lock); rb_bug("rb_thread_create_timer_thread: return non-zero (%d)", err); } + native_cond_wait(&timer_thread_cond, &timer_thread_lock); + native_mutex_unlock(&timer_thread_lock); } rb_disable_interrupt(); /* only timer thread recieve signal */ } |
