Per @calavera's suggestion: https://github.com/docker/docker/pull/16355#issuecomment-141139220 Signed-off-by: Doug Davis <dug@us.ibm.com> Upstream-commit: a283a30fb026aad4434a9f2e34f7ce955d27a957 Component: engine
12 lines
309 B
Go
12 lines
309 B
Go
package daemon
|
|
|
|
import (
|
|
"github.com/docker/docker/api/types"
|
|
derr "github.com/docker/docker/errors"
|
|
)
|
|
|
|
// ContainerTop is not supported on Windows and returns an error.
|
|
func (daemon *Daemon) ContainerTop(name string, psArgs string) (*types.ContainerProcessList, error) {
|
|
return nil, derr.ErrorCodeNoTop
|
|
}
|