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

10 lines
134 B
Go
Raw Normal View History

2014-04-18 16:34:47 +09:00
// +build freebsd
2014-04-22 09:44:22 +09:00
package gopsutil
2014-04-18 16:34:47 +09:00
2014-04-22 10:12:01 +09:00
func Cpu_times() ([]CPU_TimesStat, error) {
ret := make([]CPU_TimesStat, 0)
2014-04-18 16:34:47 +09:00
2014-04-18 21:26:24 +09:00
return ret, nil
2014-04-18 16:34:47 +09:00
}