github.com/oweisse/u-root@v0.0.0-20181109060735-d005ad25fef1/cmds/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  )