gitlab.com/apertussolutions/u-root@v7.0.0+incompatible/cmds/core/elvish/sys/ioctl_bsd.go (about) 1 // +build darwin dragonfly freebsd netbsd openbsd 2 3 // Copyright 2015 go-termios Author. All Rights Reserved. 4 // https://github.com/go-termios/termios 5 // Author: John Lenton <chipaca@github.com> 6 7 package sys 8 9 import "golang.org/x/sys/unix" 10 11 const ( 12 getAttrIOCTL = unix.TIOCGETA 13 setAttrNowIOCTL = unix.TIOCSETA 14 setAttrDrainIOCTL = unix.TIOCSETAW 15 setAttrFlushIOCTL = unix.TIOCSETAF 16 flushIOCTL = unix.TIOCFLUSH 17 )