You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
601 B
25 lines
601 B
// +build !darwin,!linux,!freebsd,!openbsd,!solaris,!windows |
|
|
|
package mem |
|
|
|
import ( |
|
"context" |
|
|
|
"github.com/shirou/gopsutil/internal/common" |
|
) |
|
|
|
func VirtualMemory() (*VirtualMemoryStat, error) { |
|
return VirtualMemoryWithContext(context.Background()) |
|
} |
|
|
|
func VirtualMemoryWithContext(ctx context.Context) (*VirtualMemoryStat, error) { |
|
return nil, common.ErrNotImplementedError |
|
} |
|
|
|
func SwapMemory() (*SwapMemoryStat, error) { |
|
return SwapMemoryWithContext(context.Background()) |
|
} |
|
|
|
func SwapMemoryWithContext(ctx context.Context) (*SwapMemoryStat, error) { |
|
return nil, common.ErrNotImplementedError |
|
}
|
|
|