diff options
author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-02-25 02:36:58 +0000 |
---|---|---|
committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-02-25 02:36:58 +0000 |
commit | 9041fc611a65f5009653f2e26458a839bef4996f (patch) | |
tree | 2b8bc6c0c0786d33ecfa4a95aceacdd0b2959768 /thread.c | |
parent | 6b7304cb61b28bc3faf8fac53d73665585c150b9 (diff) | |
download | ruby-9041fc611a65f5009653f2e26458a839bef4996f.tar.gz ruby-9041fc611a65f5009653f2e26458a839bef4996f.tar.xz ruby-9041fc611a65f5009653f2e26458a839bef4996f.zip |
* thread.c (rb_thread_run): fix to ANSI style.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11879 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r-- | thread.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -962,8 +962,7 @@ rb_thread_wakeup(VALUE thread) */ VALUE -rb_thread_run(thread) - VALUE thread; +rb_thread_run(VALUE thread) { rb_thread_wakeup(thread); rb_thread_schedule(); |