mirror of
https://github.com/ruby/ruby.git
synced 2025-08-23 13:04:13 +02: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
|
@ -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…
Add table
Add a link
Reference in a new issue