Skip to content

Commit

Permalink
Merge pull request #60 from chiangkd/master
Browse files Browse the repository at this point in the history
Fix incorrect clock calculation on macOS
  • Loading branch information
jserv authored Sep 12, 2024
2 parents 67f5c71 + 99ad0cf commit 1dc59cb
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 1dc59cb

Please sign in to comment.