1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* process.c: use sigaction instead of sigset. [ruby-core:21021]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21275 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
mame 2009-01-02 13:25:09 +00:00
parent f35f46a9f1
commit f408202de2
2 changed files with 6 additions and 6 deletions

View file

@ -1,3 +1,7 @@
Fri Jan 2 22:25:46 2009 Yusuke Endoh <mame@tsg.ne.jp>
* process.c: use sigaction instead of sigset. [ruby-core:21021]
Fri Jan 2 22:22:04 2009 Yusuke Endoh <mame@tsg.ne.jp> Fri Jan 2 22:22:04 2009 Yusuke Endoh <mame@tsg.ne.jp>
* bootstraptest/test_proc.rb: suppress error message. * bootstraptest/test_proc.rb: suppress error message.

View file

@ -2736,12 +2736,8 @@ rb_f_abort(int argc, VALUE *argv)
} }
#if defined(sun) #if defined(POSIX_SIGNAL)
#define signal(a,b) sigset(a,b) # define signal(a,b) posix_signal(a,b)
#else
# if defined(POSIX_SIGNAL)
# define signal(a,b) posix_signal(a,b)
# endif
#endif #endif
void void