blob: ec7e01dd1b59d365794baab2e4d6018fe78f001b [file]
//go:build !linux
package filedescriptors
import "context"
// GetTotalUsedFds Returns the number of used File Descriptors. Not supported
// on Windows.
func GetTotalUsedFds(context.Context) int {
return -1
}