OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SSH_PID
(Results
1 - 2
of
2
) sorted by null
/external/openssh/regress/
multiplex.sh
35
# NB. $
SSH_PID
will be killed by test-exec.sh:cleanup on fatal errors.
36
SSH_PID
=$!
168
wait $
SSH_PID
169
kill -0 $
SSH_PID
>/dev/null 2>&1 && fail "exit command failed"
186
wait $
SSH_PID
188
kill -0 $
SSH_PID
>/dev/null 2>&1 && fatal "stop command failed"
189
SSH_PID
="" # Already gone, so don't kill in cleanup
test-exec.sh
323
if [ "x$
SSH_PID
" != "x" ]; then
324
if [ $
SSH_PID
-lt 2 ]; then
325
echo bad pid for ssh: $
SSH_PID
327
kill $
SSH_PID
Completed in 69 milliseconds