diff options
Diffstat (limited to 'sshd.c')
-rw-r--r-- | sshd.c | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -2107,6 +2107,16 @@ main(int ac, char **av) | |||
2107 | } | 2107 | } |
2108 | } | 2108 | } |
2109 | 2109 | ||
2110 | if (getenv("SSH_SIGSTOP")) { | ||
2111 | /* Tell service supervisor that we are ready. */ | ||
2112 | kill(getpid(), SIGSTOP); | ||
2113 | /* The service supervisor only ever expects a single | ||
2114 | * STOP signal, so do not ever signal it again, even | ||
2115 | * in the case of a re-exec or future children. | ||
2116 | */ | ||
2117 | unsetenv("SSH_SIGSTOP"); | ||
2118 | } | ||
2119 | |||
2110 | /* Accept a connection and return in a forked child */ | 2120 | /* Accept a connection and return in a forked child */ |
2111 | server_accept_loop(&sock_in, &sock_out, | 2121 | server_accept_loop(&sock_in, &sock_out, |
2112 | &newsock, config_s); | 2122 | &newsock, config_s); |