github.com/waltonchain/waltonchain_gwtc_src@v1.1.4-0.20201225072101-8a298c95a819/log/term/terminal_solaris.go (about)

     1  package term
     2  
     3  import "golang.org/x/sys/unix"
     4  
     5  // IsTty returns true if the given file descriptor is a terminal.
     6  func IsTty(fd uintptr) bool {
     7  	_, err := unix.IoctlGetTermios(int(fd), unix.TCGETA)
     8  	return err == nil
     9  }