github.com/endocode/docker@v1.4.2-0.20160113120958-46eb4700391e/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 }