mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4f0d95fa6e
Signed-off-by: Daniel Nephin <dnephin@docker.com>
18 lines
368 B
Go
18 lines
368 B
Go
package system // import "github.com/docker/docker/pkg/system"
|
|
|
|
import "os"
|
|
|
|
// IsProcessAlive returns true if process with a given pid is running.
|
|
func IsProcessAlive(pid int) bool {
|
|
_, err := os.FindProcess(pid)
|
|
|
|
return err == nil
|
|
}
|
|
|
|
// KillProcess force-stops a process.
|
|
func KillProcess(pid int) {
|
|
p, err := os.FindProcess(pid)
|
|
if err == nil {
|
|
p.Kill()
|
|
}
|
|
}
|