open-consul/command/util_unix.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)
}