github.com/rsampaio/docker@v0.7.2-0.20150827203920-fdc73cc3fc31/daemon/top_windows.go (about)

     1  package daemon
     2  
     3  import (
     4  	"fmt"
     5  
     6  	"github.com/docker/docker/api/types"
     7  )
     8  
     9  func (daemon *Daemon) ContainerTop(name string, psArgs string) (*types.ContainerProcessList, error) {
    10  	return nil, fmt.Errorf("Top is not supported on Windows")
    11  }