diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-07-30 16:25:46 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-07-30 16:25:46 +0000 |
| commit | 9a21e314727275cdcd931471aa6dc08ecc7a1e80 (patch) | |
| tree | 2e2b828efbdfd973d1d4536bac584abd44ef2471 | |
| parent | 985e5d9d7cc4d8f3e2732137d62fa12e1a577ed0 (diff) | |
| download | ruby-9a21e314727275cdcd931471aa6dc08ecc7a1e80.tar.gz ruby-9a21e314727275cdcd931471aa6dc08ecc7a1e80.tar.xz ruby-9a21e314727275cdcd931471aa6dc08ecc7a1e80.zip | |
* thread.c (rb_mutex_unlock_all): mutex is no longer a ruby object.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18278 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | thread.c | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +Thu Jul 31 01:25:43 2008 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * thread.c (rb_mutex_unlock_all): mutex is no longer a ruby object. + Thu Jul 31 01:18:07 2008 Yusuke Endoh <mame@tsg.ne.jp> * parse.y (magic_comment_encoding): remove meaningless null check. @@ -2802,8 +2802,8 @@ rb_mutex_unlock_all(mutex_t *mutexes) while (mutexes) { mutex = mutexes; - /* rb_warn("mutex #<%s:%p> remains to be locked by terminated thread", - rb_obj_classname(mutexes), (void*)mutexes); */ + /* rb_warn("mutex #<%p> remains to be locked by terminated thread", + mutexes); */ mutexes = mutex->next_mutex; err = mutex_unlock(mutex); if (err) rb_bug("invalid keeping_mutexes: %s", err); |
