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