1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-26 13:48:59 +08:00
shirou_gopsutil/process_linux_amd64.go
2014-04-25 15:10:23 +09:00

10 lines
159 B
Go

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