github.com/mckael/restic@v0.8.3/cmd/restic/background.go (about)

     1  // +build !linux
     2  
     3  package main
     4  
     5  // IsProcessBackground should return true if it is running in the background or false if not
     6  func IsProcessBackground() bool {
     7  	//TODO: Check if the process are running in the background in other OS than linux
     8  	return false
     9  }