We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1b04ee commit 7e7ddd2Copy full SHA for 7e7ddd2
src/runtime/runtime_py32.go
@@ -27,11 +27,11 @@ func ConfigureSystemTimer(systemFrequencyHz uint32) {
27
}
28
29
func ticksToNanoseconds(ticks timeUnit) int64 {
30
- return int64(ticks * 10_000_000)
+ return int64(ticks * 1_000_000)
31
32
33
func nanosecondsToTicks(ns int64) timeUnit {
34
- return timeUnit(ns / 10_000_000)
+ return timeUnit(ns / 1_000_000)
35
36
37
var tickCounter uint64
0 commit comments