1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-26 13:48:59 +08:00
shirou_gopsutil/process_linux_arm.go
2014-05-14 00:12:17 +09:00

10 lines
157 B
Go

// +build linux
// +build arm
package gopsutil
const (
CLOCK_TICKS = 100 // C.sysconf(C._SC_CLK_TCK)
PAGESIZE = 4096 // C.sysconf(C._SC_PAGE_SIZE)
)