mirror of https://github.com/status-im/consul.git
24 lines
494 B
Go
24 lines
494 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
//go:build windows
|
|
|
|
package lock
|
|
|
|
import (
|
|
"os"
|
|
"syscall"
|
|
)
|
|
|
|
// signalPid sends a sig signal to the process with process id pid.
|
|
// Since interrupts et al is not implemented on Windows, signalPid
|
|
// always sends a SIGKILL signal irrespective of the sig value.
|
|
func signalPid(pid int, sig syscall.Signal) error {
|
|
p, err := os.FindProcess(pid)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
_ = sig
|
|
return p.Signal(syscall.SIGKILL)
|
|
}
|