1
0
mirror of https://github.com/beego/bee.git synced 2024-06-30 17:14:13 +00:00
bee/vendor/github.com/mattn/go-isatty/isatty_linux.go

19 lines
389 B
Go
Raw Normal View History

2017-03-19 22:45:54 +00:00
// +build linux
// +build !appengine
package isatty
import (
"syscall"
"unsafe"
)
const ioctlReadTermios = syscall.TCGETS
// IsTerminal return true if the file descriptor is terminal.
func IsTerminal(fd uintptr) bool {
var termios syscall.Termios
_, _, err := syscall.Syscall6(syscall.SYS_IOCTL, fd, ioctlReadTermios, uintptr(unsafe.Pointer(&termios)), 0, 0, 0)
return err == 0
}