Skip to content

Commit

Permalink
* node.h (struct thread): declare win32_exception_list on cygwin and
Browse files Browse the repository at this point in the history
  win32 regardless if it is implemented.  Provisional fix for
  [ruby-core:08917].


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11045 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
nobu committed Sep 28, 2006
1 parent 406479b commit 562b6f1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Thu Sep 28 23:59:31 2006 Nobuyoshi Nakada <[email protected]>

* 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 <[email protected]>

* lib/tmpdir.rb: use return value of getdir.call for length.
Expand Down
4 changes: 2 additions & 2 deletions node.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 562b6f1

Please sign in to comment.