mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 05:23:04 +00:00
1e02460bd1
This should let freshly recompiled golangci-lint binaries using Go 1.17 pass 'make lint'
14 lines
230 B
Go
14 lines
230 B
Go
//go:build !windows
|
|
// +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)
|
|
}
|