You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// +build !windows,!solaris
|
|
|
|
package termios
|
|
|
|
const (
|
|
TCIFLUSH = 0
|
|
TCOFLUSH = 1
|
|
TCIOFLUSH = 2
|
|
|
|
TCSANOW = 0
|
|
TCSADRAIN = 1
|
|
TCSAFLUSH = 2
|
|
)
|