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 | f5b1ce5269669b55f0e8e0fb3f8ad7fc3b5869f1 (patch) | |
| tree | fa95efc4ac5b65a40e3f52a3db227ad9911ab71c /node.h | |
| parent | 66775913072f6759aecda62e61cbda523aa9b61b (diff) | |
| download | ruby-f5b1ce5269669b55f0e8e0fb3f8ad7fc3b5869f1.tar.gz ruby-f5b1ce5269669b55f0e8e0fb3f8ad7fc3b5869f1.tar.xz ruby-f5b1ce5269669b55f0e8e0fb3f8ad7fc3b5869f1.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/branches/ruby_1_8@11045 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'node.h')
| -rw-r--r-- | node.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -402,8 +402,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; |
