Set an absolute time to a number of microseconds. */
| 51 | |
| 52 | /* Set an absolute time to a number of microseconds. */ |
| 53 | static inline void mono_time_set_usecs(struct mono_time *mt, uint64_t us) |
| 54 | { |
| 55 | mt->microseconds = us; |
| 56 | } |
| 57 | |
| 58 | /* Set an absolute time to a number of milliseconds. */ |
| 59 | static inline void mono_time_set_msecs(struct mono_time *mt, uint64_t ms) |
no outgoing calls
no test coverage detected