mirror of
https://github.com/shirou/gopsutil.git
synced 2025-04-28 13:48:49 +08:00
17 lines
326 B
Go
17 lines
326 B
Go
![]() |
//go:build aix && !cgo
|
||
|
// +build aix,!cgo
|
||
|
|
||
|
package mem
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
)
|
||
|
|
||
|
func VirtualMemoryWithContext(ctx context.Context) (*VirtualMemoryStat, error) {
|
||
|
return nil, common.ErrNotImplementedError
|
||
|
}
|
||
|
|
||
|
func SwapMemoryWithContext(ctx context.Context) (*SwapMemoryStat, error) {
|
||
|
return nil, common.ErrNotImplementedError
|
||
|
}
|