github.com/advanderveer/restic@v0.8.1-0.20171209104529-42a8c19aaea6/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  }