diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-09-28 15:01:04 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-09-28 15:01:04 +0000 |
| commit | 566a05a5282bb17b9a9d6d6b0ddeeaa9272871c0 (patch) | |
| tree | e8daf2eb6ce8ab1b6a57ea91ea7d09af841eb97e | |
| parent | 2fcb3dd2406a4a28554c2069b8cab141e24317fa (diff) | |
| download | ruby-566a05a5282bb17b9a9d6d6b0ddeeaa9272871c0.tar.gz ruby-566a05a5282bb17b9a9d6d6b0ddeeaa9272871c0.tar.xz ruby-566a05a5282bb17b9a9d6d6b0ddeeaa9272871c0.zip | |
* node.h (struct thread): declare win32_exception_list on cygwin and
win32 regardless if it is implemented. Provisional fix for
[ruby-core:08917].
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11045 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | node.h | 4 |
2 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +Thu Sep 28 23:59:31 2006 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * node.h (struct thread): declare win32_exception_list on cygwin and + win32 regardless if it is implemented. Provisional fix for + [ruby-core:08917]. + Thu Sep 28 20:49:20 2006 NAKAMURA Usaku <usa@ruby-lang.org> * lib/tmpdir.rb: use return value of getdir.call for length. @@ -421,8 +421,8 @@ typedef struct thread * rb_thread_t; struct thread { struct thread *next, *prev; rb_jmpbuf_t context; -#ifdef SAVE_WIN32_EXCEPTION_LIST - DWORD win32_exception_list; +#if (defined _WIN32 && !defined _WIN32_WCE) || defined __CYGWIN__ + unsigned long win32_exception_list; #endif VALUE result; |
