mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
9c4570a958
Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com> Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com> Signed-off-by: Anusha Ragunathan <anusha@docker.com>
22 lines
395 B
Go
22 lines
395 B
Go
// +build linux freebsd
|
|
|
|
package utils
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
// IsProcessAlive returns true if process with a given pid is running.
|
|
func IsProcessAlive(pid int) bool {
|
|
err := syscall.Kill(pid, syscall.Signal(0))
|
|
if err == nil || err == syscall.EPERM {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// KillProcess force-stops a process.
|
|
func KillProcess(pid int) {
|
|
syscall.Kill(pid, syscall.SIGKILL)
|
|
}
|