Return true if t1 before t2. */
| 96 | |
| 97 | /* Return true if t1 before t2. */ |
| 98 | static inline int mono_time_before(const struct mono_time *t1, |
| 99 | const struct mono_time *t2) |
| 100 | { |
| 101 | return mono_time_cmp(t1, t2) < 0; |
| 102 | } |
| 103 | |
| 104 | /* Return time difference between t1 and t2. i.e. t2 - t1. */ |
| 105 | static inline int64_t mono_time_diff_microseconds(const struct mono_time *t1, |
no test coverage detected