github.com/khulnasoft-lab/khulnasoft@v26.0.1-0.20240328202558-330a6f959fe0+incompatible/pkg/fileutils/fileutils_windows.go (about)

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