[process]linux: add linux_arm64.go explicitly

This commit is contained in:
Shirou WAKAYAMA 2016-06-13 16:17:40 +09:00
parent 53406b2832
commit c916da2502
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
// +build linux
// +build arm64
package process
const (
ClockTicks = 100 // C.sysconf(C._SC_CLK_TCK)
PageSize = 4096 // C.sysconf(C._SC_PAGE_SIZE)
)