File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 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).
88
99## [ Unreleased]
1010
11+ - MSRV is now 1.59.0.
1112
1213## [ v0.5.1] - 2021-11-22
1314
Original file line number Diff line number Diff line change @@ -920,8 +920,10 @@ impl LineEvent {
920920 /// in an interrupt handler so it should be very accurate.
921921 ///
922922 /// 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.
925927 pub fn timestamp ( & self ) -> u64 {
926928 self . 0 . timestamp
927929 }
You can’t perform that action at this time.
0 commit comments