From 7f3caba522f4d24764f29d83aa2de9198bb7f01c Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 24 May 2024 06:52:22 +0200 Subject: Adding upstream version 6.8. Signed-off-by: Daniel Baumann --- man3/getttyent.3 | 100 ------------------------------------------------------- 1 file changed, 100 deletions(-) delete mode 100644 man3/getttyent.3 (limited to 'man3/getttyent.3') diff --git a/man3/getttyent.3 b/man3/getttyent.3 deleted file mode 100644 index aeb87ac..0000000 --- a/man3/getttyent.3 +++ /dev/null @@ -1,100 +0,0 @@ -'\" t -.\" Copyright 2002 walter harms (walter.harms@informatik.uni-oldenburg.de) -.\" -.\" SPDX-License-Identifier: GPL-1.0-or-later -.\" -.TH getttyent 3 2023-10-31 "Linux man-pages 6.7" -.SH NAME -getttyent, getttynam, setttyent, endttyent \- get ttys file entry -.SH LIBRARY -Standard C library -.RI ( libc ", " \-lc ) -.SH SYNOPSIS -.nf -.B "#include " -.P -.B "struct ttyent *getttyent(void);" -.BI "struct ttyent *getttynam(const char *" name ); -.P -.B "int setttyent(void);" -.B "int endttyent(void);" -.fi -.SH DESCRIPTION -These functions provide an interface to the file -.B _PATH_TTYS -(e.g., -.IR /etc/ttys ). -.P -The function -.BR setttyent () -opens the file or rewinds it if already open. -.P -The function -.BR endttyent () -closes the file. -.P -The function -.BR getttynam () -searches for a given terminal name in the file. -It returns a pointer to a -.I ttyent -structure (description below). -.P -The function -.BR getttyent () -opens the file -.B _PATH_TTYS -(if necessary) and returns the first entry. -If the file is already open, the next entry. -The -.I ttyent -structure has the form: -.P -.in +4n -.EX -struct ttyent { - char *ty_name; /* terminal device name */ - char *ty_getty; /* command to execute, usually getty */ - char *ty_type; /* terminal type for termcap */ - int ty_status; /* status flags */ - char *ty_window; /* command to start up window manager */ - char *ty_comment; /* comment field */ -}; -.EE -.in -.P -.I ty_status -can be: -.P -.in +4n -.EX -#define TTY_ON 0x01 /* enable logins (start ty_getty program) */ -#define TTY_SECURE 0x02 /* allow UID 0 to login */ -.EE -.in -.SH ATTRIBUTES -For an explanation of the terms used in this section, see -.BR attributes (7). -.TS -allbox; -lbx lb lb -l l l. -Interface Attribute Value -T{ -.na -.nh -.BR getttyent (), -.BR setttyent (), -.BR endttyent (), -.BR getttynam () -T} Thread safety MT-Unsafe race:ttyent -.TE -.SH STANDARDS -BSD. -.SH NOTES -Under Linux, the file -.IR /etc/ttys , -and the functions described above, are not used. -.SH SEE ALSO -.BR ttyname (3), -.BR ttyslot (3) -- cgit v1.2.3