github.com/zhuohuang-hust/src-cbuild@v0.0.0-20230105071821-c7aab3e7c840/mergeCode/runc/libcontainer/system/sysconfig.go (about)

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