1
0
mirror of https://github.com/rancher/os.git synced 2025-09-08 18:20:32 +00:00
Files
os/vendor/github.com/opencontainers/runc/libcontainer/system/sysconfig.go
Darren Shepherd 03db5d1058 Update vendor/
2016-06-06 08:08:00 -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))
}