github.com/gondor/docker@v1.9.0-rc1/daemon/execdriver/windows/getpids.go (about)

     1  // +build windows
     2  
     3  package windows
     4  
     5  import "fmt"
     6  
     7  // GetPidsForContainer implements the exec driver Driver interface.
     8  func (d *Driver) GetPidsForContainer(id string) ([]int, error) {
     9  	// TODO Windows: Implementation required.
    10  	return nil, fmt.Errorf("GetPidsForContainer: GetPidsForContainer() not implemented")
    11  }