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