mirror of
https://github.com/octoleo/restic.git
synced 2024-11-10 23:31:09 +00:00
f80b07b2c8
The previous implementation assumed that stdin was a terminal. It now checks the terminal's fd.
10 lines
222 B
Go
10 lines
222 B
Go
// +build !linux
|
|
|
|
package termstatus
|
|
|
|
// IsProcessBackground reports whether the current process is running in the
|
|
// background. Not implemented for this platform.
|
|
func IsProcessBackground(uintptr) bool {
|
|
return false
|
|
}
|