1
0
mirror of https://gitea.com/gitea/act_runner synced 2026-05-06 01:37:57 +02:00
Files
act_runner/vendor/github.com/opencontainers/runc/libcontainer/system/sysconfig.go
Casey Lee 320e9b6057 fail on error (#20)
ci-via-github-actions
2019-01-23 11:51:22 -08: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))
}