c8224b3f94
Add a per GOOS implementation to send signals to PIDs since syscall.Kill does not exist on Windows. It will always send a SIGKILL on Windows since there seems to be no POSIX compatible notion. Fixes build on Windows.
13 lines
213 B
Go
13 lines
213 B
Go
// +build !windows
|
|
|
|
package command
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
// signalPid sends a sig signal to the process with process id pid.
|
|
func signalPid(pid int, sig syscall.Signal) error {
|
|
return syscall.Kill(pid, sig)
|
|
}
|