You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix the microsecond-to-nanosecond conversion (#360)
A microsecond is 1000 times bigger than a nanosecond (1e-6 vs 1e-9 seconds).
This commit corrects the conversion of microseconds to nanoseconds in
rv_clock_gettime() by multiplying tv_usec by 1000 instead of dividing it.
0 commit comments