diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-05-28 01:25:55 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-05-28 01:25:55 +0000 |
commit | 287f75c5e670b0ec26c4b5be69a75ae37ad3916d (patch) | |
tree | e111a505606164c966961789cba81096ce4f6d17 | |
parent | e5f3b1a5cc39db25503f1d175fbd0f93c04a85c6 (diff) | |
download | ruby-287f75c5e670b0ec26c4b5be69a75ae37ad3916d.tar.gz ruby-287f75c5e670b0ec26c4b5be69a75ae37ad3916d.tar.xz ruby-287f75c5e670b0ec26c4b5be69a75ae37ad3916d.zip |
* cont.c: fixed a function name.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12396 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | cont.c | 4 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Mon May 28 10:27:14 2007 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * cont.c: fixed a function name. + Mon May 28 03:56:44 2007 Koichi Sasada <ko1@atdot.net> * cont.c: support Fiber. Check test/ruby/test_fiber.rb for detail. @@ -145,6 +145,8 @@ cont_capture(volatile int *stat) } } +NORETURN(static void cont_restore_1(rb_context_t *)); + static void cont_restore_1(rb_context_t *cont) { @@ -181,7 +183,7 @@ cont_restore_1(rb_context_t *cont) ruby_longjmp(cont->jmpbuf, 1); } -NORETURN(NOINLINE(static void restore_context_0(rb_context_t *, VALUE *))); +NORETURN(NOINLINE(static void cont_restore_0(rb_context_t *, VALUE *))); static void cont_restore_0(rb_context_t *cont, VALUE *addr_in_prev_frame) |