commit c41b006be1 updated the version of
docker/docker in go.mod, but possibly overlooked that there was still a
replace rule present. As a result the version was not actually updated.
This patch removes the replace rule, updating docker/docker to 9f28837c1d93
full diff: https://github.com/docker/docker/compare/4634ce647cf2...9f28837c1d93
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
19 lines
372 B
Go
19 lines
372 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()
|
|
}
|
|
}
|