| 71 | } |
| 72 | |
| 73 | struct timeval GetTime() { |
| 74 | struct timeval t; |
| 75 | gettimeofday(&t, NULL); |
| 76 | return t; |
| 77 | } |
| 78 | |
| 79 | uint64_t GetTimeInterval(const struct timeval& a, |
| 80 | const struct timeval& b) { |
nothing calls this directly
no outgoing calls
no test coverage detected