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 10:12:01 +09:00

15 lines
177 B
Go

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