| 335 | } |
| 336 | |
| 337 | unsigned long long mtime_since_now(struct timeval *tv) |
| 338 | { |
| 339 | struct timeval end; |
| 340 | |
| 341 | gettimeofday(&end, NULL); |
| 342 | return mtime_since(tv, &end); |
| 343 | } |
| 344 | |
| 345 | unsigned long long utime_since(const struct timeval *s, const struct timeval *e) |
| 346 | { |