-
Notifications
You must be signed in to change notification settings - Fork 292
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor: Store time in Mono_Time in milliseconds. #2203
Conversation
5d1c5d2
to
61715e5
Compare
09f510a
to
7ae51ec
Compare
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #2203 +/- ##
==========================================
+ Coverage 74.49% 74.58% +0.08%
==========================================
Files 87 87
Lines 26243 26244 +1
==========================================
+ Hits 19551 19573 +22
+ Misses 6692 6671 -21 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 3 of 3 files at r1.
Reviewable status: 0 of 1 approvals obtained
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewable status: complete! 1 of 1 approvals obtained
Conversion to seconds happens in `mono_time_get`, and a new function `mono_time_get_ms` allows code to retrieve monotonic time in milliseconds.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 2 of 3 files at r2, 1 of 1 files at r3, all commit messages.
Reviewable status: complete! 2 of 1 approvals obtained
Conversion to seconds happens in
mono_time_get
, and a new functionmono_time_get_ms
allows code to retrieve monotonic time inmilliseconds.
This change is