pki/vendor/github.com/mattn/go-isatty/isatty_solaris.go

22 lines
582 B
Go
Raw Normal View History

2022-11-02 17:49:03 +01:00
//go:build solaris && !appengine
// +build solaris,!appengine
2020-11-25 20:36:07 +01:00
package isatty
import (
"golang.org/x/sys/unix"
)
// IsTerminal returns true if the given file descriptor is a terminal.
2021-08-30 20:04:15 +02:00
// see: https://src.illumos.org/source/xref/illumos-gate/usr/src/lib/libc/port/gen/isatty.c
2020-11-25 20:36:07 +01:00
func IsTerminal(fd uintptr) bool {
2021-08-30 20:04:15 +02:00
_, err := unix.IoctlGetTermio(int(fd), unix.TCGETA)
2020-11-25 20:36:07 +01:00
return err == nil
}
// IsCygwinTerminal return true if the file descriptor is a cygwin or msys2
// terminal. This is also always false on this environment.
func IsCygwinTerminal(fd uintptr) bool {
return false
}