mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 14:13:58 +08:00
eafabef56d
Docker-DCO-1.1-Signed-off-by: Bernerd Schaefer <bj.schaefer@gmail.com> (github: bernerdschaefer)
13 lines
136 B
Go
13 lines
136 B
Go
// +build cgo
|
|
|
|
package system
|
|
|
|
/*
|
|
#include <unistd.h>
|
|
*/
|
|
import "C"
|
|
|
|
func GetClockTicks() int {
|
|
return int(C.sysconf(C._SC_CLK_TCK))
|
|
}
|