mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
14 lines
214 B
Go
14 lines
214 B
Go
|
// +build linux aix
|
||
|
|
||
|
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
|
||
|
}
|
||
|
|