mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
win32.c: fix build error
* win32/win32.c (poll_child_status): fix build error on older mingw. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40566 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c61af20411
commit
6d32a4e32b
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
Fri May 3 13:22:12 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* win32/win32.c (poll_child_status): fix build error on older mingw.
|
||||
|
||||
Fri May 3 00:15:58 2013 Ayumu AIZAWA <ayumu.aizawa@gmail.com>
|
||||
|
||||
* common.mk: remove timestamps in distclean-ext realclean-ext.
|
||||
|
|
|
@ -3925,8 +3925,12 @@ poll_child_status(struct ChildRecord *child, int *stat_loc)
|
|||
{STATUS_FLOAT_OVERFLOW, SIGFPE},
|
||||
{STATUS_FLOAT_STACK_CHECK, SIGFPE},
|
||||
{STATUS_FLOAT_UNDERFLOW, SIGFPE},
|
||||
#ifdef STATUS_FLOAT_MULTIPLE_FAULTS
|
||||
{STATUS_FLOAT_MULTIPLE_FAULTS, SIGFPE},
|
||||
#endif
|
||||
#ifdef STATUS_FLOAT_MULTIPLE_TRAPS
|
||||
{STATUS_FLOAT_MULTIPLE_TRAPS, SIGFPE},
|
||||
#endif
|
||||
{STATUS_CONTROL_C_EXIT, SIGINT},
|
||||
};
|
||||
int i;
|
||||
|
|
Loading…
Reference in a new issue