1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2024-12-18 08:26:45 +02:00
woodpecker/vendor/github.com/Sirupsen/logrus/terminal_notwindows.go

22 lines
574 B
Go
Raw Normal View History

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