GETTTYENT - Linux手册页

时间:2019-08-20 18:01:17  来源:igfitidea点击:

Linux程序员手册 第3部分
更新日期: 2017-09-15

名称

getttyent,getttynam,setttyent,endttyent-获取ttys文件条目

语法

#包括

struct ttyent * getttyent(void);

struct ttyent * getttynam(const char * name);

int setttyent(void);

int endttyent(void);

说明

这些函数为文件_PATH_TTYS(例如/ etc / ttys)提供了接口。

函数setttyent()打开文件或后退(如果已打开)。

函数endttyent()关闭文件。

函数getttynam()在文件中搜索给定的终端名称。它返回一个指向ttyent结构的指针(如下所述)。

函数getttyent()打开文件_PATH_TTYS(如果需要)并返回第一项。如果文件已经打开,则进入下一个条目。 ttyent结构具有以下形式:

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 */
};

ty_status可以是:

#define TTY_ON     0x01  /* enable logins (start ty_getty program) */
#define TTY_SECURE 0x02  /* allow UID 0 to login */

属性

有关本节中使用的术语的说明,请参见attribute(7)。

InterfaceAttributeValue
getttyent(),setttyent(),endttyent(),getttynam()Thread safetyMT-Unsafe race:ttyent

遵循规范

不在POSIX.1中。存在于BSD或其他系统上。

备注

在Linux下,不使用文件/ etc / ttys和上述功能。

另外参见

ttyname(3),ttyslot(3)

出版信息

这个页面是Linux手册页项目5.08版的一部分。有关项目的说明、有关报告错误的信息以及此页面的最新版本,请访问https://www.kernel.org/doc/man-pages/