Files
logrus/terminal_check_bsd.go
Samuel Thibault 54357fb25f Support GNU/Hurd
2022-12-29 01:29:13 +01:00

14 lines
264 B
Go

// +build darwin dragonfly freebsd netbsd openbsd hurd
// +build !js
package logrus
import "golang.org/x/sys/unix"
const ioctlReadTermios = unix.TIOCGETA
func isTerminal(fd int) bool {
_, err := unix.IoctlGetTermios(fd, ioctlReadTermios)
return err == nil
}