2021-09-08 00:10:46 +02:00
|
|
|
//go:build solaris && !appengine
|
|
|
|
// +build solaris,!appengine
|
2019-10-27 17:04:31 +01:00
|
|
|
|
|
|
|
package isatty
|
|
|
|
|
|
|
|
import (
|
|
|
|
"golang.org/x/sys/unix"
|
|
|
|
)
|
|
|
|
|
|
|
|
// IsTerminal returns true if the given file descriptor is a terminal.
|
2021-06-09 02:45:52 +02:00
|
|
|
// see: https://src.illumos.org/source/xref/illumos-gate/usr/src/lib/libc/port/gen/isatty.c
|
2019-10-27 17:04:31 +01:00
|
|
|
func IsTerminal(fd uintptr) bool {
|
2021-06-09 02:45:52 +02:00
|
|
|
_, err := unix.IoctlGetTermio(int(fd), unix.TCGETA)
|
2019-10-27 17:04:31 +01:00
|
|
|
return err == nil
|
|
|
|
}
|
2019-10-30 00:47:56 +01:00
|
|
|
|
|
|
|
// 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
|
|
|
|
}
|