1 /* termios c_cc symbolic constant definitions. Linux/mips version. 2 Copyright (C) 2019-2022 Free Software Foundation, Inc. 3 This file is part of the GNU C Library. 4 5 The GNU C Library is free software; you can redistribute it and/or 6 modify it under the terms of the GNU Lesser General Public 7 License as published by the Free Software Foundation; either 8 version 2.1 of the License, or (at your option) any later version. 9 10 The GNU C Library is distributed in the hope that it will be useful, 11 but WITHOUT ANY WARRANTY; without even the implied warranty of 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 Lesser General Public License for more details. 14 15 You should have received a copy of the GNU Lesser General Public 16 License along with the GNU C Library. If not, see 17 <https://www.gnu.org/licenses/>. */ 18 19 #ifndef _TERMIOS_H 20 # error "Never include <bits/termios-c_cc.h> directly; use <termios.h> instead." 21 #endif 22 23 /* c_cc characters */ 24 #define VINTR 0 /* Interrupt character [ISIG]. */ 25 #define VQUIT 1 /* Quit character [ISIG]. */ 26 #define VERASE 2 /* Erase character [ICANON]. */ 27 #define VKILL 3 /* Kill-line character [ICANON]. */ 28 #define VMIN 4 /* Minimum number of bytes read at once [!ICANON]. */ 29 #define VTIME 5 /* Time-out value (tenths of a second) [!ICANON]. */ 30 #define VEOL2 6 /* Second EOL character [ICANON]. */ 31 #define VSWTC 7 32 #define VSWTCH VSWTC 33 #define VSTART 8 /* Start (X-ON) character [IXON, IXOFF]. */ 34 #define VSTOP 9 /* Stop (X-OFF) character [IXON, IXOFF]. */ 35 #define VSUSP 10 /* Suspend character [ISIG]. */ 36 /* VDSUSP is not supported on Linux. */ 37 /* #define VDSUSP 11 / * Delayed suspend character [ISIG]. */ 38 #define VREPRINT 12 /* Reprint-line character [ICANON]. */ 39 #define VDISCARD 13 /* Discard character [IEXTEN]. */ 40 #define VWERASE 14 /* Word-erase character [ICANON]. */ 41 #define VLNEXT 15 /* Literal-next character [IEXTEN]. */ 42 #define VEOF 16 /* End-of-file character [ICANON]. */ 43 #define VEOL 17 /* End-of-line character [ICANON]. */ 44