Add milliseconds to an absolute time. */
| 69 | |
| 70 | /* Add milliseconds to an absolute time. */ |
| 71 | static inline void mono_time_add_msecs(struct mono_time *mt, int64_t ms) |
| 72 | { |
| 73 | mono_time_add_usecs(mt, ms * USECS_PER_MSEC); |
| 74 | } |
| 75 | |
| 76 | /* Compare two absolute times: Return -1, 0, or 1 if t1 is <, =, or > t2, |
| 77 | * respectively. */ |
no test coverage detected