From 6998f013ab594d3f2499155b1076e45eedf70e34 Mon Sep 17 00:00:00 2001 From: kosaki Date: Fri, 29 Apr 2011 01:18:11 +0000 Subject: [PATCH] * thread.c (lock_func): small cleanup. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31375 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ thread.c | 7 ++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 174075af0a..37d06f020b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Fri Apr 29 10:17:42 2011 KOSAKI Motohiro + + * thread.c (lock_func): small cleanup. + Fri Apr 29 10:07:13 2011 KOSAKI Motohiro * thread.c (rb_mutex_lock, lock_func): Avoid busy loop and diff --git a/thread.c b/thread.c index ae4e669d15..8547ff8738 100644 --- a/thread.c +++ b/thread.c @@ -3235,10 +3235,15 @@ lock_func(rb_thread_t *th, mutex_t *mutex, int timeout_ms) native_mutex_lock(&mutex->lock); th->transition_for_lock = 0; - while (mutex->th || (mutex->th = th, 0)) { + for (;;) { struct timespec ts; int ret; + if (!mutex->th) { + mutex->th = th; + break; + } + mutex->cond_waiting++; if (timeout_ms) { ts = init_lock_timeout(timeout_ms);