Sign in
fuchsia
/
third_party
/
github.com
/
moby
/
moby
/
0fe1af95f3ea1a5c75988faf2e536867716fe3e0
/
.
/
daemon
/
internal
/
filedescriptors
/
filiedescriptors_unsupported.go
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
}