2
2
mirror of https://github.com/octoleo/restic.git synced 2024-09-27 05:59:01 +00:00
restic/backend/sftp/sftp_unix.go

14 lines
242 B
Go
Raw Normal View History

// +build !windows
package sftp
import (
"syscall"
)
// ignoreSigIntProcAttr returns a syscall.SysProcAttr that
// disables SIGINT on parent.
func ignoreSigIntProcAttr() *syscall.SysProcAttr {
return &syscall.SysProcAttr{Setsid: true}
}