2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-28 14:40:49 +00:00
restic/internal/ui/termstatus/background.go

11 lines
240 B
Go
Raw Normal View History

2022-03-28 20:23:47 +00:00
//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
}