sysconf_cgo.go 207 B

1234567891011121314
  1. // +build linux,cgo
  2. package linux
  3. /*
  4. #include <unistd.h>
  5. */
  6. import "C"
  7. // GetClockTicks returns the number of click ticks in one jiffie.
  8. func GetClockTicks() int {
  9. return int(C.sysconf(C._SC_CLK_TCK))
  10. }