ruby-changes:13647
From: nobu <ko1@a...>
Date: Thu, 22 Oct 2009 17:27:37 +0900 (JST)
Subject: [ruby-changes:13647] Ruby:r25431 (ruby_1_8): * intern.h (rb_thread_join): added prototype. a patch from
nobu 2009-10-22 17:27:24 +0900 (Thu, 22 Oct 2009) New Revision: 25431 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=25431 Log: * intern.h (rb_thread_join): added prototype. a patch from Mikhail T. in [ruby-core:26217]. Modified files: branches/ruby_1_8/ChangeLog branches/ruby_1_8/ext/thread/thread.c branches/ruby_1_8/intern.h Index: ruby_1_8/intern.h =================================================================== --- ruby_1_8/intern.h (revision 25430) +++ ruby_1_8/intern.h (revision 25431) @@ -226,6 +226,7 @@ VALUE rb_thread_alive_p _((VALUE)); VALUE rb_thread_create _((VALUE (*)(ANYARGS), void*)); void rb_thread_interrupt _((void)); +int rb_thread_join _((VALUE thread, double limit)); void rb_thread_trap_eval _((VALUE, int, int)); void rb_thread_signal_raise _((int)); void rb_thread_signal_exit _((void)); Index: ruby_1_8/ext/thread/thread.c =================================================================== --- ruby_1_8/ext/thread/thread.c (revision 25430) +++ ruby_1_8/ext/thread/thread.c (revision 25431) @@ -252,7 +252,6 @@ return Qnil; } -extern int rb_thread_join _((VALUE thread, double limit)); #define DELAY_INFTY 1E30 static VALUE Index: ruby_1_8/ChangeLog =================================================================== --- ruby_1_8/ChangeLog (revision 25430) +++ ruby_1_8/ChangeLog (revision 25431) @@ -1,3 +1,8 @@ +Thu Oct 22 17:27:21 2009 Nobuyoshi Nakada <nobu@r...> + + * intern.h (rb_thread_join): added prototype. a patch from + Mikhail T. in [ruby-core:26217]. + Wed Oct 21 01:19:56 2009 NAKAMURA, Hiroshi <nahi@r...> * lib/monitor.rb (MonitorMixin.mon_release): ensure the scheduled -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/