ruby-changes:10234
From: nobu <ko1@a...>
Date: Mon, 26 Jan 2009 14:15:12 +0900 (JST)
Subject: [ruby-changes:10234] Ruby:r21778 (ruby_1_8): * eval.c (Init_Thread): provides "continuation.so" for forward
nobu 2009-01-26 14:15:03 +0900 (Mon, 26 Jan 2009) New Revision: 21778 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=21778 Log: * eval.c (Init_Thread): provides "continuation.so" for forward compatibility. Modified files: branches/ruby_1_8/ChangeLog branches/ruby_1_8/eval.c Index: ruby_1_8/ChangeLog =================================================================== --- ruby_1_8/ChangeLog (revision 21777) +++ ruby_1_8/ChangeLog (revision 21778) @@ -1,3 +1,8 @@ +Mon Jan 26 14:15:00 2009 Nobuyoshi Nakada <nobu@r...> + + * eval.c (Init_Thread): provides "continuation.so" for forward + compatibility. + Mon Jan 26 05:36:55 2009 Technorama Ltd. <oss-ruby@t...> * ext/openssl/ossl_ssl.c: Server Name Indication support. Index: ruby_1_8/eval.c =================================================================== --- ruby_1_8/eval.c (revision 21777) +++ ruby_1_8/eval.c (revision 21778) @@ -13745,6 +13745,7 @@ rb_define_method(rb_cCont, "[]", rb_cont_call, -1); rb_define_global_function("callcc", rb_callcc, 0); rb_global_variable(&cont_protect); + rb_provide("continuation.so"); cThGroup = rb_define_class("ThreadGroup", rb_cObject); rb_define_alloc_func(cThGroup, thgroup_s_alloc); -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/