summaryrefslogtreecommitdiff
path: root/libpod/container_top.go
diff options
context:
space:
mode:
authorTomSweeneyRedHat <tsweeney@redhat.com>2018-04-14 17:32:49 -0400
committerAtomic Bot <atomic-devel@projectatomic.io>2018-04-16 15:18:38 +0000
commit6c5ebb0315fc6527c0d75ca53fb6b027d20802a5 (patch)
treeb82c25f9efa375b87152fe4c8cc12b8d0b954f6c /libpod/container_top.go
parentfa8442e4a063b9a074cd2d17effdf5de138f90cb (diff)
downloadpodman-6c5ebb0315fc6527c0d75ca53fb6b027d20802a5.tar.gz
podman-6c5ebb0315fc6527c0d75ca53fb6b027d20802a5.tar.bz2
podman-6c5ebb0315fc6527c0d75ca53fb6b027d20802a5.zip
Change container.locked to batched
Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com> Closes: #619 Approved by: mheon
Diffstat (limited to 'libpod/container_top.go')
-rw-r--r--libpod/container_top.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpod/container_top.go b/libpod/container_top.go
index bc007c408..28c1e33d2 100644
--- a/libpod/container_top.go
+++ b/libpod/container_top.go
@@ -15,7 +15,7 @@ import (
// GetContainerPids reads sysfs to obtain the pids associated with the container's cgroup
// and uses locking
func (c *Container) GetContainerPids() ([]string, error) {
- if !c.locked {
+ if !c.batched {
c.lock.Lock()
defer c.lock.Unlock()
if err := c.syncContainer(); err != nil {
@@ -41,7 +41,7 @@ func (c *Container) getContainerPids() ([]string, error) {
// GetContainerPidInformation calls ps with the appropriate options and returns
// the results as a string and the container's PIDs as a []string
func (c *Container) GetContainerPidInformation(args []string) ([]string, error) {
- if !c.locked {
+ if !c.batched {
c.lock.Lock()
defer c.lock.Unlock()
if err := c.syncContainer(); err != nil {