diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-01-06 17:28:13 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-01-06 17:28:13 +0000 |
commit | a04699eec0962398977692add18877c3b3f88fc8 (patch) | |
tree | 21a7db24909496d57807a69e8b997079afe8c514 /sys/compat | |
parent | 9dc91b2f8a7723caff7661850bbd18b894909e11 (diff) |
from netbsd:
Implement vhangup(); more or less as suggested in PR#1560 (matthew green).
I'm vrele'ing s_ttyvp here too, so sys_exit() won't have to go over it again.
Diffstat (limited to 'sys/compat')
-rw-r--r-- | sys/compat/sunos/sunos_misc.c | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/sys/compat/sunos/sunos_misc.c b/sys/compat/sunos/sunos_misc.c index 706f1132011..8d258513a26 100644 --- a/sys/compat/sunos/sunos_misc.c +++ b/sys/compat/sunos/sunos_misc.c @@ -1,4 +1,4 @@ -/* $NetBSD: sunos_misc.c,v 1.59 1995/12/14 18:44:44 ghudson Exp $ */ +/* $NetBSD: sunos_misc.c,v 1.60 1996/01/05 16:53:14 pk Exp $ */ /* * Copyright (c) 1992, 1993 @@ -74,6 +74,7 @@ #include <sys/signal.h> #include <sys/signalvar.h> #include <sys/socket.h> +#include <sys/tty.h> #include <sys/vnode.h> #include <sys/uio.h> #include <sys/wait.h> @@ -764,6 +765,21 @@ sunos_sys_vhangup(p, v, retval) void *v; register_t *retval; { + struct sunos_vhangup_args *uap = v; + struct session *sp = p->p_session; + + if (sp->s_ttyvp == 0) + return 0; + + if (sp->s_ttyp && sp->s_ttyp->t_session == sp && sp->s_ttyp->t_pgrp) + pgsignal(sp->s_ttyp->t_pgrp, SIGHUP, 1); + + (void) ttywait(sp->s_ttyp); + if (sp->s_ttyvp) + vgoneall(sp->s_ttyvp); + if (sp->s_ttyvp) + vrele(sp->s_ttyvp); + sp->s_ttyvp = NULL; return 0; } |