From 5d3687e3bfa12e61434086baa0d7634cbc9d3c92 Mon Sep 17 00:00:00 2001 From: yugui Date: Sun, 28 Dec 2008 09:43:02 +0000 Subject: merges r21105 and r21106 from trunk into ruby_1_9_1. * thread.c (mutex_free): GC thread (main thread) has failed to unlock a mutex that is locked by another thread, which makes the mutex dangling in keeping_mutexes and causes [BUG] or stuck finally. Now unlocking is performed as locking thread. * thread.c (mutex_unlock, rb_mutex_unlock, rb_mutex_unlock_all): mutex_unlock receives a thread. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@21132 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index e936067bf..3101fe8cf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,17 @@ +Sun Dec 28 12:24:14 2008 Yusuke Endoh + + * thread.c (mutex_free, mutex_unlock): add qualifiers. + +Sun Dec 28 10:28:04 2008 Yusuke Endoh + + * thread.c (mutex_free): GC thread (main thread) has failed to unlock + a mutex that is locked by another thread, which makes the mutex + dangling in keeping_mutexes and causes [BUG] or stuck finally. + Now unlocking is performed as locking thread. + + * thread.c (mutex_unlock, rb_mutex_unlock, rb_mutex_unlock_all): + mutex_unlock receives a thread. + Sun Dec 28 05:44:44 2008 Ryan Davis * lib/minitest/*.rb: Imported minitest 1.3.1 r4505. -- cgit