github.com/markusbkk/elvish@v0.0.0-20231204143114-91dc52438621/pkg/sys/eunix/termios_bsd.go (about) 1 //go:build darwin || dragonfly || freebsd || netbsd || openbsd 2 // +build darwin dragonfly freebsd netbsd openbsd 3 4 // Copyright 2015 go-termios Author. All Rights Reserved. 5 // https://github.com/go-termios/termios 6 // Author: John Lenton <chipaca@github.com> 7 8 package eunix 9 10 import "golang.org/x/sys/unix" 11 12 const ( 13 getAttrIOCTL = unix.TIOCGETA 14 setAttrNowIOCTL = unix.TIOCSETA 15 setAttrDrainIOCTL = unix.TIOCSETAW 16 setAttrFlushIOCTL = unix.TIOCSETAF 17 flushIOCTL = unix.TIOCFLUSH 18 )