termios_notbsd.go 397 B

1234567891011121314151617
  1. //go:build linux || solaris
  2. // Copyright 2015 go-termios Author. All Rights Reserved.
  3. // https://github.com/go-termios/termios
  4. // Author: John Lenton <chipaca@github.com>
  5. package eunix
  6. import "golang.org/x/sys/unix"
  7. const (
  8. getAttrIOCTL = unix.TCGETS
  9. setAttrNowIOCTL = unix.TCSETS
  10. setAttrDrainIOCTL = unix.TCSETSW
  11. setAttrFlushIOCTL = unix.TCSETSF
  12. flushIOCTL = unix.TCFLSH
  13. )