getpids.go 314 B

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