mirror of
https://github.com/shirou/gopsutil.git
synced 2025-05-04 22:17:34 +08:00
10 lines
159 B
Go
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)
|
|
)
|