Internal change.

PiperOrigin-RevId: 397813331
This commit is contained in:
gVisor bot 2021-09-20 12:24:48 -07:00
parent 5951ec5bce
commit 206d7bb90c
1 changed files with 2 additions and 2 deletions

View File

@ -30,9 +30,9 @@ func getDefaultArchOverheadCycles() TSCValue {
// frqRatio. defaultOverheadCycles of ARM equals to that on
// x86 devided by frqRatio
cntfrq := getCNTFRQ()
frqRatio := 1000000000 / cntfrq
frqRatio := 1000000000 / float64(cntfrq)
overheadCycles := (1 * 1000) / frqRatio
return overheadCycles
return TSCValue(overheadCycles)
}
// defaultOverheadTSC is the default estimated syscall overhead in TSC cycles.