summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authorkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-12 06:58:15 +0000
committerkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-12 06:58:15 +0000
commitf0041fa0fddd9b5297c1840e7504bb0b04991c87 (patch)
tree143b244b3b07eaaad405fc8b5281f58039951acc /thread.c
parent614fcdf66c816b491527c760acb2fbef5c6b8650 (diff)
* thread.c: remove th->transition_for_lock. It's thread unsafe.
[Bug #4723][ruby-dev:43563] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32022 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c24
1 files changed, 9 insertions, 15 deletions
diff --git a/thread.c b/thread.c
index 0b8f45b43d..caf0427d1a 100644
--- a/thread.c
+++ b/thread.c
@@ -3459,9 +3459,6 @@ lock_func(rb_thread_t *th, mutex_t *mutex, int timeout_ms)
int interrupted = 0;
int err = 0;
- native_mutex_lock(&mutex->lock);
- th->transition_for_lock = 0;
-
mutex->cond_waiting++;
for (;;) {
if (!mutex->th) {
@@ -3493,9 +3490,6 @@ lock_func(rb_thread_t *th, mutex_t *mutex, int timeout_ms)
}
mutex->cond_waiting--;
- th->transition_for_lock = 1;
- native_mutex_unlock(&mutex->lock);
-
return interrupted;
}
@@ -3537,23 +3531,23 @@ rb_mutex_lock(VALUE self)
set_unblock_function(th, lock_interrupt, mutex, &oldubf);
th->status = THREAD_STOPPED_FOREVER;
- th->vm->sleeper++;
th->locking_mutex = self;
+ native_mutex_lock(&mutex->lock);
+ th->vm->sleeper++;
/*
- * Carefully! while some contended threads are in lock_fun(),
+ * Carefully! while some contended threads are in lock_func(),
* vm->sleepr is unstable value. we have to avoid both deadlock
* and busy loop.
*/
if (vm_living_thread_num(th->vm) == th->vm->sleeper) {
timeout_ms = 100;
}
+ GVL_UNLOCK_BEGIN();
+ interrupted = lock_func(th, mutex, timeout_ms);
+ native_mutex_unlock(&mutex->lock);
+ GVL_UNLOCK_END();
- th->transition_for_lock = 1;
- BLOCKING_REGION_CORE({
- interrupted = lock_func(th, mutex, timeout_ms);
- });
- th->transition_for_lock = 0;
reset_unblock_function(th, &oldubf);
th->locking_mutex = Qfalse;
@@ -4728,7 +4722,7 @@ check_deadlock_i(st_data_t key, st_data_t val, int *found)
rb_thread_t *th;
GetThreadPtr(thval, th);
- if (th->status != THREAD_STOPPED_FOREVER || RUBY_VM_INTERRUPTED(th) || th->transition_for_lock) {
+ if (th->status != THREAD_STOPPED_FOREVER || RUBY_VM_INTERRUPTED(th)) {
*found = 1;
}
else if (th->locking_mutex) {
@@ -4753,7 +4747,7 @@ debug_i(st_data_t key, st_data_t val, int *found)
rb_thread_t *th;
GetThreadPtr(thval, th);
- printf("th:%p %d %d %d", th, th->status, th->interrupt_flag, th->transition_for_lock);
+ printf("th:%p %d %d", th, th->status, th->interrupt_flag);
if (th->locking_mutex) {
mutex_t *mutex;
GetMutexPtr(th->locking_mutex, mutex);