OSDN Git Service

(split) Import translated manuals from JM CVS Repository.
[linuxjm/LDP_man-pages.git] / original / man7 / termio.7
1 .\" Copyright (c) 2006 by Michael Kerrisk <mtk.manpages@gmail.com>
2 .\"
3 .\" Permission is granted to make and distribute verbatim copies of this
4 .\" manual provided the copyright notice and this permission notice are
5 .\" preserved on all copies.
6 .\"
7 .\" Permission is granted to copy and distribute modified versions of this
8 .\" manual under the conditions for verbatim copying, provided that the
9 .\" entire resulting derived work is distributed under the terms of a
10 .\" permission notice identical to this one.
11 .\"
12 .\" Since the Linux kernel and libraries are constantly changing, this
13 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
14 .\" responsibility for errors or omissions, or for damages resulting from
15 .\" the use of the information contained herein.  The author(s) may not
16 .\" have taken the same level of care in the production of this manual,
17 .\" which is licensed free of charge, as they might when working
18 .\" professionally.
19 .\"
20 .\" Formatted or processed versions of this manual, if unaccompanied by
21 .\" the source, must acknowledge the copyright and authors of this work.
22 .\"
23 .\" 28 Dec 2006 - Initial Creation
24 .\"
25 .TH TERMIO 7 2006-12-28 "Linux" "Linux Programmer's Manual"
26 .SH NAME
27 termio \- the System V terminal driver interface
28 .SH DESCRIPTION
29 .B termio
30 is the name of the old System V terminal driver interface.
31 This interface defined a
32 .I termio
33 structure used to store terminal settings, and a range of
34 .BR ioctl (2)
35 operations to get and set terminal attributes.
36
37 The
38 .B termio
39 interface is now obsolete: POSIX.1-1990 standardized a modified
40 version of this interface, under the name
41 .BR termios .
42 The POSIX.1 data structure differs slightly from the
43 System V version, and POSIX.1 defined a suite of functions
44 to replace the various
45 .BR ioctl (2)
46 operations that existed in System V.
47 (This was done because
48 .BR ioctl (2)
49 was unstandardized, and its variadic third argument
50 does not allow argument type checking.)
51
52 If you're looking for page called "termio", then you can probably
53 find most of the information that you seek in either
54 .BR termios (3)
55 or
56 .BR tty_ioctl (4).
57 .SH "SEE ALSO"
58 .BR termios (3),
59 .BR tty_ioctl (4)