fileutils_solaris.go 187 B

1234567
  1. package fileutils
  2. // GetTotalUsedFds Returns the number of used File Descriptors.
  3. // On Solaris these limits are per process and not systemwide
  4. func GetTotalUsedFds() int {
  5. return -1
  6. }