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

* signal.c (ruby_signal): don't set SA_RESTART. a backport from

the HEAD.  [ruby-talk:220937]  [ruby-talk:147220]

* signal.c (Init_signal): avoid duplicated installation of SIGCHLD
  handler.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@11203 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2006-10-22 08:01:13 +00:00
parent dd5fe7b203
commit 0931ed2664
2 changed files with 10 additions and 11 deletions

View file

@ -1,3 +1,11 @@
Sun Oct 22 14:48:31 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
* signal.c (ruby_signal): don't set SA_RESTART. a backport from
the HEAD. [ruby-talk:220937] [ruby-talk:147220]
* signal.c (Init_signal): avoid duplicated installation of SIGCHLD
handler.
Sun Oct 22 16:47:56 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
* string.c (rb_str_substr): should be infected with only original

View file

@ -341,14 +341,6 @@ ruby_signal(signum, handler)
sigact.sa_handler = handler;
sigemptyset(&sigact.sa_mask);
sigact.sa_flags = 0;
# if defined(SA_RESTART)
/* All other signals but VTALRM shall restart restartable syscall
VTALRM will cause EINTR to syscall if interrupted.
*/
if (signum != SIGVTALRM) {
sigact.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
}
# endif
# ifdef SA_NOCLDWAIT
if (signum == SIGCHLD && handler == SIG_IGN)
sigact.sa_flags |= SA_NOCLDWAIT;
@ -1010,10 +1002,9 @@ Init_signal()
install_sighandler(SIGPIPE, sigpipe);
#endif
#ifdef SIGCLD
#if defined(SIGCLD)
init_sigchld(SIGCLD);
#endif
#ifdef SIGCHLD
#elif defined(SIGCHLD)
init_sigchld(SIGCHLD);
#endif