20 lines
446 B
Go
20 lines
446 B
Go
//go:build !unix
|
|
|
|
package gitx
|
|
|
|
import (
|
|
"os"
|
|
"syscall"
|
|
)
|
|
|
|
// sysProcAttr has no portable equivalent outside unix; the default is fine.
|
|
func sysProcAttr() *syscall.SysProcAttr { return nil }
|
|
|
|
// terminate kills just the child. Helper processes it spawned may outlive it,
|
|
// but syncbot is deployed on Linux, where proc_unix.go handles this properly.
|
|
func terminate(pid int) {
|
|
if p, err := os.FindProcess(pid); err == nil {
|
|
_ = p.Kill()
|
|
}
|
|
}
|