1
0
mirror of https://github.com/rancher/os.git synced 2025-07-08 04:18:38 +00:00
os/vendor/github.com/opencontainers/runc/libcontainer/system/sysconfig.go
Darren Shepherd a14846152b Update vendor
2016-05-31 18:14:32 -07:00

13 lines
154 B
Go

// +build cgo,linux cgo,freebsd
package system
/*
#include <unistd.h>
*/
import "C"
func GetClockTicks() int {
return int(C.sysconf(C._SC_CLK_TCK))
}