2015-07-30 21:25:15 +00:00
|
|
|
package daemon
|
|
|
|
|
|
|
|
import (
|
2015-09-17 18:54:14 +00:00
|
|
|
derr "github.com/docker/docker/errors"
|
2016-01-05 00:05:26 +00:00
|
|
|
"github.com/docker/engine-api/types"
|
2015-07-30 21:25:15 +00:00
|
|
|
)
|
|
|
|
|
2015-07-30 21:01:53 +00:00
|
|
|
// ContainerTop is not supported on Windows and returns an error.
|
2015-09-29 17:51:40 +00:00
|
|
|
func (daemon *Daemon) ContainerTop(name string, psArgs string) (*types.ContainerProcessList, error) {
|
2015-09-16 18:56:26 +00:00
|
|
|
return nil, derr.ErrorCodeNoTop
|
2015-07-30 21:25:15 +00:00
|
|
|
}
|