mirror of
https://github.com/octoleo/restic.git
synced 2024-11-02 11:46:36 +00:00
22 lines
524 B
Go
22 lines
524 B
Go
package main
|
|
|
|
import (
|
|
"syscall"
|
|
"unsafe"
|
|
|
|
"github.com/restic/restic/internal/debug"
|
|
)
|
|
|
|
// IsProcessBackground returns true if it is running in the background or false if not
|
|
func IsProcessBackground() bool {
|
|
var pid int
|
|
_, _, err := syscall.Syscall(syscall.SYS_IOCTL, uintptr(syscall.Stdin), syscall.TIOCGPGRP, uintptr(unsafe.Pointer(&pid)))
|
|
|
|
if err != 0 {
|
|
debug.Log("Can't check if we are in the background. Using default behaviour. Error: %s\n", err.Error())
|
|
return false
|
|
}
|
|
|
|
return pid != syscall.Getpgrp()
|
|
}
|