fileutils_windows.go 154 B

1234567
  1. package fileutils
  2. // GetTotalUsedFds Returns the number of used File Descriptors. Not supported
  3. // on Windows.
  4. func GetTotalUsedFds() int {
  5. return -1
  6. }