Mercurial > yakumo_izuru > aya
view vendor/github.com/sirupsen/logrus/terminal_check_solaris.go @ 69:03019bbf2e0e draft
Fix a bug that I caused
Signed-off-by: Izuru Yakumo <yakumo.izuru@chaotic.ninja>
author | yakumo.izuru |
---|---|
date | Sat, 16 Sep 2023 16:11:35 +0000 |
parents | 787b5ee0289d |
children |
line wrap: on
line source
package logrus import ( "golang.org/x/sys/unix" ) // IsTerminal returns true if the given file descriptor is a terminal. func isTerminal(fd int) bool { _, err := unix.IoctlGetTermio(fd, unix.TCGETA) return err == nil }