restic/internal/ui/termstatus/background.go
2025-03-22 18:20:30 +00:00

11 lines
242 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
}