1a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich/****************************************************************************
2a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************
3a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
4a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   This header was automatically generated from a Linux kernel header
5a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   of the same name, to make information necessary for userspace to
6a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   call into the kernel available to libc.  It contains only constants,
7a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   structures, and macros generated from the original header, and thus,
8a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   contains no copyrightable information.
9a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
10a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   To edit the content of this header, modify the corresponding
11a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   source file (e.g. under external/kernel-headers/original/) then
12a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   run bionic/libc/kernel/tools/update_all.py
13a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
14a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   Any manual change here will be lost the next time this script will
15a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   be run. You've been warned!
16a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
17a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************
18a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************/
19655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#ifndef _UAPI_ASM_GENERIC_TERMIOS_H
20655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define _UAPI_ASM_GENERIC_TERMIOS_H
21655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#include <asm/termbits.h>
22655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#include <asm/ioctls.h>
23655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
24655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengstruct winsize {
25d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  unsigned short ws_row;
26d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  unsigned short ws_col;
27d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  unsigned short ws_xpixel;
28655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
29d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  unsigned short ws_ypixel;
30655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng};
31655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define NCC 8
32655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengstruct termio {
33655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
34d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  unsigned short c_iflag;
35d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  unsigned short c_oflag;
36d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  unsigned short c_cflag;
37d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  unsigned short c_lflag;
38655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
39d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  unsigned char c_line;
40d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  unsigned char c_cc[NCC];
41655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng};
42655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define TIOCM_LE 0x001
43655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
44655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define TIOCM_DTR 0x002
45655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define TIOCM_RTS 0x004
46655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define TIOCM_ST 0x008
47655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define TIOCM_SR 0x010
48655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
49655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define TIOCM_CTS 0x020
50655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define TIOCM_CAR 0x040
51655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define TIOCM_RNG 0x080
52655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define TIOCM_DSR 0x100
53655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
54655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define TIOCM_CD TIOCM_CAR
55655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define TIOCM_RI TIOCM_RNG
56655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define TIOCM_OUT1 0x2000
57655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define TIOCM_OUT2 0x4000
58655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
59655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define TIOCM_LOOP 0x8000
60a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich#endif
61