logrus/terminal_notwindows.go

22 lines
558 B
Go
Raw Normal View History

2014-04-23 18:21:11 +00:00
// Based on ssh/terminal:
// Copyright 2011 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
2015-02-07 20:27:43 +00:00
// +build linux darwin freebsd openbsd
2014-04-23 18:21:11 +00:00
package logrus
import (
"syscall"
"unsafe"
)
// IsTerminal returns true if the given file descriptor is a terminal.
func IsTerminal() bool {
fd := syscall.Stdout
var termios Termios
_, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), ioctlReadTermios, uintptr(unsafe.Pointer(&termios)), 0, 0, 0)
return err == 0
}