| 19 | } |
| 20 | |
| 21 | double timeval_diff_in_seconds(struct timeval *start_time, struct timeval *end_time) |
| 22 | { |
| 23 | return double(timeval_diff(start_time, end_time)) / 1e6; |
| 24 | } |
| 25 | |
| 26 | |
| 27 | long long timespec_diff(const struct timespec *start_time, const struct timespec *end_time) |
no test coverage detected