| 148 | ::QueryPerformanceCounter( reinterpret_cast<LARGE_INTEGER*>( &clkStart.at( id ) ) ); |
| 149 | #else |
| 150 | struct timeval s; |
| 151 | gettimeofday(&s, 0); |
| 152 | clkStart.at( id ) = (unsigned long long)s.tv_sec * 1000000 + (unsigned long long)s.tv_usec; |
| 153 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected