diff options
| author | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-11-04 13:37:10 +0000 |
|---|---|---|
| committer | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-11-04 13:37:10 +0000 |
| commit | 6207ec185d6ebd0d182a50b6ce27c0bdd16e2320 (patch) | |
| tree | cd4b12a694186eeb5ec69a12d0ba2c5cbc496953 /thread.c | |
| parent | d3db1e7d5d5966366767912b7d5a881e0e9da1fc (diff) | |
| download | ruby-6207ec185d6ebd0d182a50b6ce27c0bdd16e2320.tar.gz ruby-6207ec185d6ebd0d182a50b6ce27c0bdd16e2320.tar.xz ruby-6207ec185d6ebd0d182a50b6ce27c0bdd16e2320.zip | |
merges r20102 from trunk into ruby_1_9_1.
* include/ruby/intern.h (rb_mutex_synchronize): fixed prototype.
* thread.c (rb_mutex_synchronize): fixed function name.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@20110 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
| -rw-r--r-- | thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3023,7 +3023,7 @@ mutex_sleep(int argc, VALUE *argv, VALUE self) */ VALUE -rb_thread_synchronize(VALUE mutex, VALUE (*func)(VALUE arg), VALUE arg) +rb_mutex_synchronize(VALUE mutex, VALUE (*func)(VALUE arg), VALUE arg) { rb_mutex_lock(mutex); return rb_ensure(func, arg, rb_mutex_unlock, mutex); |
