blob: 499789984d2bf6ed56218d551d8f9f4c17d918e3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// +build darwin dragonfly freebsd netbsd openbsd
// +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
}
|