2
1
mirror of https://github.com/therootcompany/serviceman.git synced 2025-04-03 22:30:37 +00:00
serviceman/runner/runner_notwindows.go

21 lines
231 B
Go

// +build !windows
package runner
import (
"os"
"os/exec"
)
func backgroundCmd(cmd *exec.Cmd) {
}
func kill(pid int) error {
p, err := os.FindProcess(pid)
// already died
if nil != err {
return nil
}
return p.Kill()
}