terraform/vendor/github.com/opencontainers/runc/libcontainer/system/sysconfig.go

13 lines
154 B
Go
Raw Normal View History

2016-10-24 08:15:30 +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))
}