diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-01-19 19:01:44 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-01-19 19:01:44 +0000 |
commit | 0e3ef036e211c0047f5d9108261c0b4f41a94b3e (patch) | |
tree | 64fc4ca2856ecbf2cfafcf6ba7c2f7707c46f62f | |
parent | 32dd2c47a56e9d310be8258ce5ede8470fc5ce93 (diff) |
* 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
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | node.h | 2 | ||||
-rw-r--r-- | version.h | 6 |
3 files changed, 10 insertions, 4 deletions
@@ -1,3 +1,9 @@ +Tue Jan 20 04:02:44 2009 Nobuyoshi Nakada <[email protected]> + + * 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 <[email protected]> * ext/socket/extconf.rb (gai_strerror): checks if available and if @@ -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[]; |