diff options
author | 2001-07-02 13:59:14 +0000 | |
---|---|---|
committer | 2001-07-02 13:59:14 +0000 | |
commit | 266c844ebe9c4c44be5c34f5f2e822a1ff62cec1 (patch) | |
tree | e358f24138b1d7cf3b4d91dfad8047e2e53681e7 /usr.bin/ssh/session.h | |
parent | #include <string.h> to get mem* prototypes. (diff) | |
download | wireguard-openbsd-266c844ebe9c4c44be5c34f5f2e822a1ff62cec1.tar.xz wireguard-openbsd-266c844ebe9c4c44be5c34f5f2e822a1ff62cec1.zip |
wait until !session_have_children(); bugreport from Lutz.Jaenicke@aet.TU-Cottbus.DE
Diffstat (limited to 'usr.bin/ssh/session.h')
-rw-r--r-- | usr.bin/ssh/session.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/session.h b/usr.bin/ssh/session.h index fd91ac17cc9..a04fa6f2bcc 100644 --- a/usr.bin/ssh/session.h +++ b/usr.bin/ssh/session.h @@ -1,4 +1,4 @@ -/* $OpenBSD: session.h,v 1.10 2001/06/27 02:12:54 markus Exp $ */ +/* $OpenBSD: session.h,v 1.11 2001/07/02 13:59:15 markus Exp $ */ /* * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. @@ -32,5 +32,6 @@ int session_open(Authctxt*, int); void session_input_channel_req(int, void *); void session_close_by_pid(pid_t, int); void session_close_by_channel(int, void *); +int session_have_children(void); #endif |