github.com/toplink-cn/moby@v0.0.0-20240305205811-460b4aebdf81/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 }