github.com/hustcat/docker@v1.3.3-0.20160314103604-901c67a8eeab/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 }