mirror of
https://github.com/shirou/gopsutil.git
synced 2025-04-26 13:48:59 +08:00
10 lines
155 B
Go
10 lines
155 B
Go
// +build linux
|
|
// +build arm
|
|
|
|
package gopsutil
|
|
|
|
const (
|
|
ClockTicks = 100 // C.sysconf(C._SC_CLK_TCK)
|
|
PageSize = 4096 // C.sysconf(C._SC_PAGE_SIZE)
|
|
)
|