Skip to content

Commit

Permalink
Fix incorrect clock calculation on MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
chiangkd committed Sep 10, 2024
1 parent 67f5c71 commit 14cd792
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ static uint64_t semu_timer_clocksource(uint64_t freq)
static mach_timebase_info_data_t t;
if (t.denom == 0)
(void) mach_timebase_info(&t);
return mult_frac(mach_absolute_time() * freq, t.numer, t.denom);
return mult_frac(mult_frac(mach_absolute_time(), freq, 1e9), t.numer,
t.denom);
#else
return time(0) * freq;
#endif
Expand Down

0 comments on commit 14cd792

Please sign in to comment.