1
0
mirror of https://github.com/restic/restic.git synced 2024-06-28 08:00:52 +02:00
restic/internal/ui/termstatus/background.go
2022-03-28 22:23:47 +02:00

11 lines
240 B
Go

//go:build !linux
// +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
}