mirror of
https://github.com/docker/docs.git
synced 2026-03-28 06:49:00 +07:00
Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@crosbymichael.com> (github: crosbymichael)
14 lines
178 B
Go
14 lines
178 B
Go
// +build linux,cgo
|
|
|
|
package system
|
|
|
|
/*
|
|
#include <unistd.h>
|
|
int get_hz(void) { return sysconf(_SC_CLK_TCK); }
|
|
*/
|
|
import "C"
|
|
|
|
func GetClockTicks() int {
|
|
return int(C.get_hz())
|
|
}
|