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