diff options
Diffstat (limited to 'vendor/github.com/docker/docker/pkg/fileutils/fileutils_windows.go')
-rw-r--r-- | vendor/github.com/docker/docker/pkg/fileutils/fileutils_windows.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/vendor/github.com/docker/docker/pkg/fileutils/fileutils_windows.go b/vendor/github.com/docker/docker/pkg/fileutils/fileutils_windows.go new file mode 100644 index 000000000..5ec21cace --- /dev/null +++ b/vendor/github.com/docker/docker/pkg/fileutils/fileutils_windows.go @@ -0,0 +1,7 @@ +package fileutils + +// GetTotalUsedFds Returns the number of used File Descriptors. Not supported +// on Windows. +func GetTotalUsedFds() int { + return -1 +} |