mem_fallback.go 601 B

12345678910111213141516171819202122232425
  1. // +build !darwin,!linux,!freebsd,!openbsd,!solaris,!windows
  2. package mem
  3. import (
  4. "context"
  5. "github.com/shirou/gopsutil/internal/common"
  6. )
  7. func VirtualMemory() (*VirtualMemoryStat, error) {
  8. return VirtualMemoryWithContext(context.Background())
  9. }
  10. func VirtualMemoryWithContext(ctx context.Context) (*VirtualMemoryStat, error) {
  11. return nil, common.ErrNotImplementedError
  12. }
  13. func SwapMemory() (*SwapMemoryStat, error) {
  14. return SwapMemoryWithContext(context.Background())
  15. }
  16. func SwapMemoryWithContext(ctx context.Context) (*SwapMemoryStat, error) {
  17. return nil, common.ErrNotImplementedError
  18. }