Ver código fonte

Merge pull request #4 from fazalmajid/Solaris

support for Solaris
mattn 10 anos atrás
pai
commit
d6aaa2f596
1 arquivos alterados com 15 adições e 0 exclusões
  1. 15 0
      isatty_solaris.go

+ 15 - 0
isatty_solaris.go

@@ -0,0 +1,15 @@
+// +build solaris
+
+package isatty
+
+import (
+	"golang.org/x/sys/unix"
+)
+
+// IsTerminal returns true if the given file descriptor is a terminal.
+// see: http://src.illumos.org/source/xref/illumos-gate/usr/src/lib/libbc/libc/gen/common/isatty.c
+func IsTerminal(fd uintptr) bool {
+	var termio unix.Termio
+	err := unix.IoctlSetTermio(int(fd), unix.TCGETA, &termio)
+	return err == nil
+}