diff options
author | H. Peter Anvin <hpa@zytor.com> | 2025-04-25 07:30:59 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2025-04-25 07:30:59 +0200 |
commit | e04afb71771710cdc6025fe95908f5f17de7b72d (patch) | |
tree | 6d946c259f6d5a4a341a18f46c2140e75ef695e5 /sysdeps/unix/sysv/linux/bits | |
parent | e78caeb4ff812ae19d24d65f4d4d48508154277b (diff) | |
download | glibc-e04afb71771710cdc6025fe95908f5f17de7b72d.zip glibc-e04afb71771710cdc6025fe95908f5f17de7b72d.tar.gz glibc-e04afb71771710cdc6025fe95908f5f17de7b72d.tar.bz2 |
linux/termio: remove <termio.h> and struct termio
The <termio.h> interface is absolutely ancient: it was obsoleted by
<termios.h> already in the first version of POSIX (1988) and thus
predates the very first version of Linux. Unfortunately, some constant
macros are used both by <termio.h> and <termios.h>; particularly
problematic is the baud rate constants since the termio interface
*requires* that the baud rate is set via an enumeration as part of
c_cflag.
In preparation of revamping the termios interface to support the
arbitrary baud rate capability that the Linux kernel has supported
since 2008, remove <termio.h> in the hope that no one still uses this
archaic interface.
Note that there is no actual code in glibc to support termio: it is
purely an unabstracted ioctl() interface.
Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
Reviewed-by: Florian Weimer <fweimer@redhat.com>
Diffstat (limited to 'sysdeps/unix/sysv/linux/bits')
-rw-r--r-- | sysdeps/unix/sysv/linux/bits/ioctl-types.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/sysdeps/unix/sysv/linux/bits/ioctl-types.h b/sysdeps/unix/sysv/linux/bits/ioctl-types.h index cc2c9d7..e8e5084 100644 --- a/sysdeps/unix/sysv/linux/bits/ioctl-types.h +++ b/sysdeps/unix/sysv/linux/bits/ioctl-types.h @@ -32,17 +32,6 @@ struct winsize unsigned short int ws_ypixel; }; -#define NCC 8 -struct termio - { - unsigned short int c_iflag; /* input mode flags */ - unsigned short int c_oflag; /* output mode flags */ - unsigned short int c_cflag; /* control mode flags */ - unsigned short int c_lflag; /* local mode flags */ - unsigned char c_line; /* line discipline */ - unsigned char c_cc[NCC]; /* control characters */ -}; - /* modem lines */ #define TIOCM_LE 0x001 #define TIOCM_DTR 0x002 |