fileutils_windows.go 242 B

123456789
  1. package fileutils // import "github.com/docker/docker/pkg/fileutils"
  2. import "context"
  3. // GetTotalUsedFds Returns the number of used File Descriptors. Not supported
  4. // on Windows.
  5. func GetTotalUsedFds(ctx context.Context) int {
  6. return -1
  7. }