| 18 | #endif |
| 19 | |
| 20 | static ui64 ToMicroSeconds(const struct timeval& tv) { |
| 21 | return (ui64)tv.tv_sec * 1000000 + (ui64)tv.tv_usec; |
| 22 | } |
| 23 | |
| 24 | #if defined(_win_) |
| 25 | static ui64 ToMicroSeconds(const FILETIME& ft) { |
no outgoing calls
no test coverage detected