sysconfig.go 154 B

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