mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-31 22:10:51 +02:00
* completed termios constants for mips, some need to be checked on a real mips-linux system, see custom warning
git-svn-id: trunk@20281 -
This commit is contained in:
parent
f927198c2a
commit
d8c377bfed
@ -1314,8 +1314,6 @@ const
|
||||
VSTOP = 9;
|
||||
VSUSP = 10;
|
||||
|
||||
|
||||
const
|
||||
VREPRINT = 12;
|
||||
VDISCARD = 13;
|
||||
VWERASE = 14;
|
||||
@ -1452,11 +1450,25 @@ const
|
||||
TCIOFF = 2;
|
||||
TCION = 3;
|
||||
|
||||
|
||||
TCIFLUSH = 0;
|
||||
TCOFLUSH = 1;
|
||||
TCIOFLUSH = 2;
|
||||
|
||||
TIOCM_LE = $001;
|
||||
TIOCM_DTR = $002;
|
||||
TIOCM_RTS = $004;
|
||||
TIOCM_ST = $008;
|
||||
TIOCM_SR = $010;
|
||||
TIOCM_CTS = $020;
|
||||
TIOCM_CAR = $040;
|
||||
TIOCM_RNG = $080;
|
||||
TIOCM_DSR = $100;
|
||||
TIOCM_CD = TIOCM_CAR;
|
||||
TIOCM_RI = TIOCM_RNG;
|
||||
TIOCM_OUT1 = $2000;
|
||||
TIOCM_OUT2 = $4000;
|
||||
TIOCM_LOOP = $8000;
|
||||
|
||||
TCSANOW = TCSETS;
|
||||
TCSADRAIN = TCSETSW;
|
||||
TCSAFLUSH = TCSETSF;
|
||||
|
Loading…
Reference in New Issue
Block a user