Skip to content

Commit

Permalink
Remove sigchld trace
Browse files Browse the repository at this point in the history
  • Loading branch information
mkj committed Jul 1, 2024
1 parent 9dce15f commit 2674736
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/svr-chansession.c
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,6 @@ static void sesssigchild_handler(int UNUSED(dummy)) {

const int saved_errno = errno;

TRACE(("enter sigchld handler"))

/* Make sure that the main select() loop wakes up */
while (1) {
/* isserver is just a random byte to write. We can't do anything
Expand All @@ -161,7 +159,6 @@ static void sesssigchild_handler(int UNUSED(dummy)) {
sa_chld.sa_flags = SA_NOCLDSTOP;
sigemptyset(&sa_chld.sa_mask);
sigaction(SIGCHLD, &sa_chld, NULL);
TRACE(("leave sigchld handler"))

errno = saved_errno;
}
Expand Down

0 comments on commit 2674736

Please sign in to comment.