mirror of
https://github.com/shirou/gopsutil.git
synced 2025-04-26 13:48:59 +08:00

Instead of hard-coding the page size for linux systems, use Go's `Getpagesize` function. This resolves #258. Signed-off-by: Thomas Hipp <thipp@suse.de>
9 lines
104 B
Go
9 lines
104 B
Go
// +build linux
|
|
// +build arm
|
|
|
|
package process
|
|
|
|
const (
|
|
ClockTicks = 100 // C.sysconf(C._SC_CLK_TCK)
|
|
)
|