1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-28 13:48:49 +08:00
shirou_gopsutil/process/process_linux_arm.go

10 lines
155 B
Go
Raw Normal View History

2014-05-14 00:12:17 +09:00
// +build linux
// +build arm
package gopsutil
const (
2014-08-15 20:05:26 +02:00
ClockTicks = 100 // C.sysconf(C._SC_CLK_TCK)
PageSize = 4096 // C.sysconf(C._SC_PAGE_SIZE)
2014-05-14 00:12:17 +09:00
)