1 2 3 4 5 6 7 8 9 10 11 12
// +build cgo,linux package system /* #include <unistd.h> */ import "C" func GetClockTicks() int { return int(C.sysconf(C._SC_CLK_TCK)) }