[Ada] Add some OS constants to control serial port
gcc/ada/ * s-oscons-tmplt.c: Add some OS constants.
This commit is contained in:
parent
cd676dfa57
commit
cbe22e189a
1 changed files with 35 additions and 0 deletions
|
@ -724,6 +724,41 @@ CNU(CRTSCTS, "Output hw flow control")
|
|||
#endif
|
||||
CNU(CREAD, "Read")
|
||||
|
||||
#ifndef ICANON
|
||||
# define ICANON -1
|
||||
#endif
|
||||
CNU(ICANON, "canonical mode")
|
||||
|
||||
#ifndef CBAUD
|
||||
# define CBAUD -1
|
||||
#endif
|
||||
CNU(CBAUD, "baud speed mask")
|
||||
|
||||
#ifndef ECHO
|
||||
# define ECHO -1
|
||||
#endif
|
||||
CNU(ECHO, "echo input characters")
|
||||
|
||||
#ifndef ECHOE
|
||||
# define ECHOE -1
|
||||
#endif
|
||||
CNU(ECHOE, "erase preceding characters")
|
||||
|
||||
#ifndef ECHOK
|
||||
# define ECHOK -1
|
||||
#endif
|
||||
CNU(ECHOK, "kill character, erases current line")
|
||||
|
||||
#ifndef ECHOCTL
|
||||
# define ECHOCTL -1
|
||||
#endif
|
||||
CNU(ECHOCTL, "echo special characters")
|
||||
|
||||
#ifndef ECHONL
|
||||
# define ECHONL -1
|
||||
#endif
|
||||
CNU(ECHONL, "force echo NL character")
|
||||
|
||||
#ifndef CS5
|
||||
# define CS5 -1
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue