1
0
mirror of https://github.com/rancher/rke.git synced 2025-09-11 12:03:47 +00:00

vendor update

This commit is contained in:
Sebastiaan van Steenis
2020-08-14 18:43:49 +02:00
parent f251e3ca92
commit 1b24d67a21
152 changed files with 11824 additions and 10 deletions

View File

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