Return true if t1 after t2 */
| 89 | |
| 90 | /* Return true if t1 after t2 */ |
| 91 | static inline int mono_time_after(const struct mono_time *t1, |
| 92 | const struct mono_time *t2) |
| 93 | { |
| 94 | return mono_time_cmp(t1, t2) > 0; |
| 95 | } |
| 96 | |
| 97 | /* Return true if t1 before t2. */ |
| 98 | static inline int mono_time_before(const struct mono_time *t1, |
no test coverage detected