mirror of
https://github.com/therootcompany/serviceman.git
synced 2025-04-03 22:30:37 +00:00
21 lines
231 B
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()
|
|
}
|