summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-26 05:15:03 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-26 05:15:03 +0000
commit2af5d793a871c59f2804c6139da471e07a142cd9 (patch)
treefff9805070ee22d1db73c16f2b07702b773dde88
parentf5df8d33b4e2d3e5eb9a3878fdba613e3d89d3d0 (diff)
* eval.c (Init_Thread): provides "continuation.so" for forward
compatibility. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@21778 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--eval.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 2eb5f9e391..c8b8df73d2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon Jan 26 14:15:00 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * eval.c (Init_Thread): provides "continuation.so" for forward
+ compatibility.
+
Mon Jan 26 05:36:55 2009 Technorama Ltd. <oss-ruby@technorama.net>
* ext/openssl/ossl_ssl.c: Server Name Indication support.
diff --git a/eval.c b/eval.c
index 8829dbdd05..58f7b9f3d0 100644
--- a/eval.c
+++ b/eval.c
@@ -13745,6 +13745,7 @@ Init_Thread()
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);