File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ Versioning](https://semver.org/spec/v2.0.0.html).
8
8
9
9
## [ Unreleased]
10
10
11
+ - MSRV is now 1.59.0.
11
12
12
13
## [ v0.5.1] - 2021-11-22
13
14
Original file line number Diff line number Diff line change @@ -920,8 +920,10 @@ impl LineEvent {
920
920
/// in an interrupt handler so it should be very accurate.
921
921
///
922
922
/// The nanosecond timestamp value should are captured
923
- /// using the `CLOCK_REALTIME` offsets in the kernel and
924
- /// should be compared against `CLOCK_REALTIME` values.
923
+ /// using the `CLOCK_MONOTONIC` offsets in the kernel and
924
+ /// should be compared against `CLOCK_MONOTONIC` values.
925
+ /// Note that kernel versions prior to 5.7 used
926
+ /// `CLOCK_REALTIME` offsets instead.
925
927
pub fn timestamp ( & self ) -> u64 {
926
928
self . 0 . timestamp
927
929
}
You can’t perform that action at this time.
0 commit comments