mirror of
https://github.com/hashicorp/vault.git
synced 2026-07-04 06:46:30 -04:00
12 lines
142 B
Go
12 lines
142 B
Go
// +build cgo,linux
|
|
|
|
package system
|
|
|
|
/*
|
|
#include <unistd.h>
|
|
*/
|
|
import "C"
|
|
|
|
func GetClockTicks() int {
|
|
return int(C.sysconf(C._SC_CLK_TCK))
|
|
}
|