bugzilla-daemon at mindrot.org
2002-Apr-05 20:52 UTC
[Bug 100] serverloop.c modifications for correct UNICOS behavior
http://bugzilla.mindrot.org/show_bug.cgi?id=100 ------- Additional Comments From mouring at eviladmin.org 2002-04-06 06:52 ------- The following code was committed to OpenSSH to catch some SysV issue. Does this keep UNICOS happy? while ((wait_pid = waitpid(-1, &wait_status, 0)) < 0) if (errno != EINTR) packet_disconnect("wait: %.100s", strerror(errno)); if (wait_pid != pid) error("Strange, wait returned pid %d, expected %d", wait_pid, pid); If so can you close this? - Ben ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.
bugzilla-daemon at mindrot.org
2002-Apr-22 22:40 UTC
[Bug 100] serverloop.c modifications for correct UNICOS behavior
http://bugzilla.mindrot.org/show_bug.cgi?id=100 ------- Additional Comments From wendyp at cray.com 2002-04-23 08:40 ------- 1st patch is still required, 2nd is not. updated for 22 april snapshot: --- serverloop.c.orig Mon Apr 22 14:35:09 2002 +++ serverloop.c Mon Apr 22 14:36:08 2002 @@ -143,7 +143,9 @@ int save_errno = errno; debug("Received SIGCHLD."); child_terminated = 1; +#ifndef _CRAY mysignal(SIGCHLD, sigchld_handler); +#endif /* !_CRAY */ notify_parent(); errno = save_errno; } ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.