aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/sirupsen/logrus/terminal_check_bsd.go
blob: 3c4f43f91cd1194b1ed1dfe28a6af4cea222ba76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// +build darwin dragonfly freebsd netbsd openbsd

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
}