mirror of
https://github.com/octoleo/restic.git
synced 2024-11-01 03:12:31 +00:00
11 lines
240 B
Go
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
|
|
}
|