2018-02-05 16:05:59 -05:00
|
|
|
package fileutils // import "github.com/docker/docker/pkg/fileutils"
|
2015-09-18 16:39:12 -04:00
|
|
|
|
|
|
|
// GetTotalUsedFds Returns the number of used File Descriptors. Not supported
|
|
|
|
// on Windows.
|
|
|
|
func GetTotalUsedFds() int {
|
|
|
|
return -1
|
|
|
|
}
|