
Update traefik dependencies (docker/docker and related) - Update dependencies - Fix compilation problems - Remove vdemeester/docker-events (in docker api now) - Remove `integration/vendor` - Use `testImport` - update some deps. - regenerate the lock from scratch (after a `glide cc`)
7 lines
154 B
Go
7 lines
154 B
Go
package fileutils
|
|
|
|
// GetTotalUsedFds Returns the number of used File Descriptors. Not supported
|
|
// on Windows.
|
|
func GetTotalUsedFds() int {
|
|
return -1
|
|
}
|