Return time difference between t1 and t2. i.e. t2 - t1. */
| 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, |
| 106 | const struct mono_time *t2) |
| 107 | { |
| 108 | return t2->microseconds - t1->microseconds; |
| 109 | } |
| 110 | |
| 111 | struct stopwatch { |
| 112 | struct mono_time start; |
no outgoing calls