1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* cont.c (cont_restore_1): should not be inlined.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21414 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2009-01-10 10:07:21 +00:00
parent ab8a2c7c1f
commit d46fcaf485
3 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
Sat Jan 10 19:05:13 2009 Koichi Sasada <ko1@atdot.net>
* cont.c (cont_restore_1): should not be inlined.
Fri Jan 9 21:52:47 2009 Tanaka Akira <akr@fsij.org>
* ext/socket/socket.c (sock_define_const): use INT2NUM.

2
cont.c
View file

@ -289,7 +289,7 @@ cont_capture(volatile int *stat)
}
}
NORETURN(static void cont_restore_1(rb_context_t *));
NOINLINE(NORETURN(static void cont_restore_1(rb_context_t *)));
static void
cont_restore_1(rb_context_t *cont)

View file

@ -1,5 +1,5 @@
#define RUBY_VERSION "1.9.1"
#define RUBY_RELEASE_DATE "2009-01-09"
#define RUBY_RELEASE_DATE "2009-01-10"
#define RUBY_PATCHLEVEL 5000
#define RUBY_BRANCH_NAME "trunk"
@ -8,7 +8,7 @@
#define RUBY_VERSION_TEENY 1
#define RUBY_RELEASE_YEAR 2009
#define RUBY_RELEASE_MONTH 1
#define RUBY_RELEASE_DAY 9
#define RUBY_RELEASE_DAY 10
#ifdef RUBY_EXTERN
RUBY_EXTERN const char ruby_version[];