1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-26 13:48:59 +08:00
shirou_gopsutil/cpu_freebsd.go
2014-04-22 17:45:39 +09:00

10 lines
134 B
Go

// +build freebsd
package gopsutil
func Cpu_times() ([]CPU_TimesStat, error) {
ret := make([]CPU_TimesStat, 0)
return ret, nil
}