blob: 67e8fc4fda9939799a3d2d481a15ded3c0a67b00 [file] [log] [blame]
package fileutils // import "github.com/docker/docker/pkg/fileutils"
import "context"
// GetTotalUsedFds Returns the number of used File Descriptors. Not supported
// on Windows.
func GetTotalUsedFds(ctx context.Context) int {
return -1
}