mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
13 lines
210 B
Go
13 lines
210 B
Go
// +build !windows
|
|
|
|
package lock
|
|
|
|
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)
|
|
}
|