mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
16 lines
282 B
Go
16 lines
282 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
//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)
|
|
}
|