mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* node.h (rb_thread_raised_clear): should not clear flags other than
raised flags. a patch by Tomoyuki Chikanaga <chikanag AT nippon-control-system.co.jp> at [ruby-dev:37794]. [ruby-dev:37776] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@21677 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
32dd2c47a5
commit
0e3ef036e2
3 changed files with 10 additions and 4 deletions
|
@ -1,3 +1,9 @@
|
|||
Tue Jan 20 04:02:44 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* node.h (rb_thread_raised_clear): should not clear flags other than
|
||||
raised flags. a patch by Tomoyuki Chikanaga <chikanag AT
|
||||
nippon-control-system.co.jp> at [ruby-dev:37794]. [ruby-dev:37776]
|
||||
|
||||
Wed Jan 14 13:09:00 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/socket/extconf.rb (gai_strerror): checks if available and if
|
||||
|
|
2
node.h
2
node.h
|
@ -481,7 +481,7 @@ int rb_thread_reset_raised(rb_thread_t th);
|
|||
#define rb_thread_raised_set(th, f) ((th)->flags |= (f))
|
||||
#define rb_thread_raised_reset(th, f) ((th)->flags &= ~(f))
|
||||
#define rb_thread_raised_p(th, f) (((th)->flags & (f)) != 0)
|
||||
#define rb_thread_raised_clear(th) ((th)->flags = 0)
|
||||
#define rb_thread_raised_clear(th) (rb_thread_raised_reset(th, RAISED_MASK))
|
||||
|
||||
#if defined(__cplusplus)
|
||||
} /* extern "C" { */
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#define RUBY_VERSION "1.8.7"
|
||||
#define RUBY_RELEASE_DATE "2009-01-14"
|
||||
#define RUBY_RELEASE_DATE "2009-01-20"
|
||||
#define RUBY_VERSION_CODE 187
|
||||
#define RUBY_RELEASE_CODE 20090114
|
||||
#define RUBY_RELEASE_CODE 20090120
|
||||
#define RUBY_PATCHLEVEL 5000
|
||||
|
||||
#define RUBY_VERSION_MAJOR 1
|
||||
|
@ -9,7 +9,7 @@
|
|||
#define RUBY_VERSION_TEENY 7
|
||||
#define RUBY_RELEASE_YEAR 2009
|
||||
#define RUBY_RELEASE_MONTH 1
|
||||
#define RUBY_RELEASE_DAY 14
|
||||
#define RUBY_RELEASE_DAY 20
|
||||
|
||||
#ifdef RUBY_EXTERN
|
||||
RUBY_EXTERN const char ruby_version[];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue