kitty/tools/tty/tty_bsd.go
Kovid Goyal cf287015de
...
2022-11-14 15:41:48 +05:30

27 lines
553 B
Go

//go:build darwin || freebsd || openbsd || netbsd || dragonfly
// +build darwin freebsd openbsd netbsd dragonfly
package tty
import (
"golang.org/x/sys/unix"
)
func Tcgetattr(fd int, argp *unix.Termios) error {
return unix.IoctlSetTermios(fd, unix.TIOCGETA, argp)
}
func Tcsetattr(fd int, opt uintptr, argp *unix.Termios) error {
switch opt {
case TCSANOW:
opt = unix.TIOCSETA
case TCSADRAIN:
opt = unix.TIOCSETAW
case TCSAFLUSH:
opt = unix.TIOCSETAF
default:
return unix.EINVAL
}
return unix.IoctlSetTermios(fd, uint(opt), argp)
}