mirror of
https://github.com/fleetdm/fleet
synced 2026-04-30 09:57:37 +00:00
11 lines
147 B
Go
11 lines
147 B
Go
|
|
//go:build !windows
|
||
|
|
// +build !windows
|
||
|
|
|
||
|
|
package main
|
||
|
|
|
||
|
|
import "syscall"
|
||
|
|
|
||
|
|
func killPID(pid int) error {
|
||
|
|
return syscall.Kill(pid, syscall.SIGKILL)
|
||
|
|
}
|