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