summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-30 16:25:46 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-30 16:25:46 +0000
commitea79b2360acf87a0b0c3a45831d1b3fd11b3afd1 (patch)
tree2e2b828efbdfd973d1d4536bac584abd44ef2471 /thread.c
parentcf0866114160d00a2ad8121b50a5713be13fa920 (diff)
* thread.c (rb_mutex_unlock_all): mutex is no longer a ruby object.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18278 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/thread.c b/thread.c
index f6e7ff2799..1650b9b4ca 100644
--- a/thread.c
+++ b/thread.c
@@ -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);