2022-03-28 20:23:47 +00:00
|
|
|
//go:build !linux
|
2018-04-28 13:24:36 +00:00
|
|
|
// +build !linux
|
|
|
|
|
|
|
|
package termstatus
|
|
|
|
|
|
|
|
// IsProcessBackground reports whether the current process is running in the
|
|
|
|
// background. Not implemented for this platform.
|
2020-10-13 10:56:23 +00:00
|
|
|
func IsProcessBackground(uintptr) bool {
|
2018-04-28 13:24:36 +00:00
|
|
|
return false
|
|
|
|
}
|