diff --git a/ChangeLog b/ChangeLog index c654ba3997..5129f953f4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Fri Feb 23 10:53:21 2007 Shugo Maeda + + * thread_pthread.ci (native_mutex_lock): do not call + pthread_mutex_trylock(). + Fri Feb 23 10:31:16 2007 Minero Aoki * dln.c: use dlopen on Mac OS X 10.3 or later. diff --git a/thread_pthread.ci b/thread_pthread.ci index a8ffcb0c78..b28301704a 100644 --- a/thread_pthread.ci +++ b/thread_pthread.ci @@ -16,13 +16,8 @@ void native_mutex_lock(pthread_mutex_t *lock) { int r; - r = pthread_mutex_trylock(lock); - if (r == EBUSY) { - r = pthread_mutex_lock(lock); - - if (r != 0) { - rb_bug("pthread_mutex_lock: %d", r); - } + if ((r = pthread_mutex_lock(lock)) != 0) { + rb_bug("pthread_mutex_lock: %d", r); } }