diff options
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | eval.c | 3 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Sat Jul 5 13:09:47 2008 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * eval.c (rb_thread_value): missed to change at r17874. [ruby-core:17595] + Sat Jul 5 00:33:08 2008 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp> * lib/erb.rb (PercentScanner#scan): fix %% line bug. [ruby-core:17491] @@ -11361,6 +11361,7 @@ rb_thread_select(max, read, write, except, timeout) } static int rb_thread_join0 _((rb_thread_t, double)); +int rb_thread_join _((VALUE, double)); static int rb_thread_join0(th, limit) @@ -12456,7 +12457,7 @@ rb_thread_value(thread) { rb_thread_t th = rb_thread_check(thread); - while (!rb_thread_join(th, DELAY_INFTY)); + while (!rb_thread_join0(th, DELAY_INFTY)); return th->result; } |
