elvish/sys/ioctl_notbsd.go
2018-01-06 14:31:11 +01:00

18 lines
391 B
Go

// +build linux solaris
// Copyright 2015 go-termios Author. All Rights Reserved.
// https://github.com/go-termios/termios
// Author: John Lenton <chipaca@github.com>
package sys
import "golang.org/x/sys/unix"
const (
getAttrIOCTL = unix.TCGETS
setAttrNowIOCTL = unix.TCSETS
setAttrDrainIOCTL = unix.TCSETSW
setAttrFlushIOCTL = unix.TCSETSF
flushIOCTL = unix.TCFLSH
)