From fa5f99effa7dd2ef9fbd5287b6225590b28713d1 Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Tue, 27 Feb 2018 22:52:28 -0500 Subject: Convert exec session tracking to use a dedicated struct This will behave better if we need to add anything to it at a later date - we can add fields to the struct without breaking existing BoltDB databases. Signed-off-by: Matthew Heon Closes: #412 Approved by: baude --- libpod/oci.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libpod/oci.go') diff --git a/libpod/oci.go b/libpod/oci.go index 63aff9487..ef32079f9 100644 --- a/libpod/oci.go +++ b/libpod/oci.go @@ -571,7 +571,8 @@ func (r *OCIRuntime) execStopContainer(ctr *Container, timeout uint) error { // Get a list of active exec sessions execSessions := []int{} - for _, pid := range ctr.state.ExecSessions { + for _, session := range ctr.state.ExecSessions { + pid := session.PID // Ping the PID with signal 0 to see if it still exists if err := unix.Kill(pid, 0); err == unix.ESRCH { continue -- cgit v1.2.3-54-g00ecf