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

15 lines
168 B
Go
Raw Normal View History

2014-04-18 16:34:47 +09:00
// +build freebsd
package main
import (
"fmt"
)
func (c CPU) Cpu_times() map[string]string {
ret := make(map[string]string)
fmt.Println("FreeBSD")
return ret
}