vhangup (2)
Leading comments
Copyright 1993 Rickard E. Faith (faith@cs.unc.edu) %%%LICENSE_START(VERBATIM) Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one. Since th...
NAME
vhangup - virtually hangup the current terminalSYNOPSIS
#include <unistd.h>int vhangup(void);
Feature Test Macro Requirements for glibc (see feature_test_macros(7)):
vhangup(): _BSD_SOURCE || (_XOPEN_SOURCE && _XOPEN_SOURCE < 500)
DESCRIPTION
vhangup() simulates a hangup on the current terminal. This call arranges for other users to have a ``clean'' terminal at login time.RETURN VALUE
On success, zero is returned. On error, -1 is returned, and errno is set appropriately.ERRORS
- EPERM
- The calling process has insufficient privilege to call vhangup(); the CAP_SYS_TTY_CONFIG capability is required.