mirror of
https://github.com/shirou/gopsutil.git
synced 2025-04-26 13:48:59 +08:00
10 lines
134 B
Go
10 lines
134 B
Go
// +build freebsd
|
|
|
|
package gopsutil
|
|
|
|
func Cpu_times() ([]CPU_TimesStat, error) {
|
|
ret := make([]CPU_TimesStat, 0)
|
|
|
|
return ret, nil
|
|
}
|