memory_fallback.go 138 B

12345678
  1. //go:build !linux
  2. package memory
  3. // Return 0 if the total system memory cannot be determined
  4. func TotalSysMemory() uint64 {
  5. return 0
  6. }