blob: eb5b5b06614cf065bb04bc98c007787192afb8c8 [file]
// SPDX-License-Identifier: BSD-3-Clause
//go:build aix
package load
import (
"context"
)
func Avg() (*AvgStat, error) {
return AvgWithContext(context.Background())
}
// Misc returns miscellaneous host-wide statistics.
// darwin use ps command to get process running/blocked count.
// Almost same as Darwin implementation, but state is different.
func Misc() (*MiscStat, error) {
return MiscWithContext(context.Background())
}