matterbridge/vendor/github.com/sirupsen/logrus/terminal_check_unix.go

14 lines
231 B
Go
Raw Normal View History

2021-03-20 14:40:23 -07:00
// +build linux aix zos
2020-05-23 15:06:21 -07:00
// +build !js
2019-06-16 14:33:25 -07:00
package logrus
import "golang.org/x/sys/unix"
const ioctlReadTermios = unix.TCGETS
func isTerminal(fd int) bool {
_, err := unix.IoctlGetTermios(fd, ioctlReadTermios)
return err == nil
}