woodpecker/vendor/github.com/Sirupsen/logrus/terminal_notwindows.go

22 lines
574 B
Go
Raw Normal View History

2015-05-22 18:37:40 +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.
2016-04-11 22:55:13 +00:00
// +build linux darwin freebsd openbsd netbsd dragonfly
2015-05-22 18:37:40 +00:00
package logrus
import (
"syscall"
"unsafe"
)
2016-04-11 22:55:13 +00:00
// IsTerminal returns true if stderr's file descriptor is a terminal.
2015-05-22 18:37:40 +00:00
func IsTerminal() bool {
2016-04-11 22:55:13 +00:00
fd := syscall.Stderr
2015-05-22 18:37:40 +00:00
var termios Termios
_, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), ioctlReadTermios, uintptr(unsafe.Pointer(&termios)), 0, 0, 0)
return err == 0
}