1
0
mirror of https://github.com/restic/restic.git synced 2025-06-14 16:58:35 +00:00

10 lines
222 B
Go
Raw Normal View History

// +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
}