5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 18:22:30 +00:00
matterbridge/vendor/github.com/mattn/go-isatty/isatty_solaris.go

22 lines
582 B
Go
Raw Normal View History

//go:build solaris && !appengine
// +build solaris,!appengine
2017-02-18 22:00:46 +00:00
package isatty
import (
"golang.org/x/sys/unix"
)
// IsTerminal returns true if the given file descriptor is a terminal.
2021-10-16 21:11:32 +00:00
// see: https://src.illumos.org/source/xref/illumos-gate/usr/src/lib/libc/port/gen/isatty.c
2017-02-18 22:00:46 +00:00
func IsTerminal(fd uintptr) bool {
2021-10-16 21:11:32 +00:00
_, err := unix.IoctlGetTermio(int(fd), unix.TCGETA)
2017-02-18 22:00:46 +00:00
return err == nil
}
2019-03-02 12:04:28 +00: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
}