Add microseconds to an absolute time. */
| 63 | |
| 64 | /* Add microseconds to an absolute time. */ |
| 65 | static inline void mono_time_add_usecs(struct mono_time *mt, int64_t us) |
| 66 | { |
| 67 | mt->microseconds += us; |
| 68 | } |
| 69 | |
| 70 | /* Add milliseconds to an absolute time. */ |
| 71 | static inline void mono_time_add_msecs(struct mono_time *mt, int64_t ms) |
no outgoing calls
no test coverage detected