zoreide/vendor/github.com/docker/libcontainer/system/sysconfig.go

13 lines
154 B
Go
Raw Normal View History

2022-07-01 15:46:31 +02:00
// +build cgo,linux cgo,freebsd
package system
/*
#include <unistd.h>
*/
import "C"
func GetClockTicks() int {
return int(C.sysconf(C._SC_CLK_TCK))
}