| 56 | return (double)(dt.QuadPart) / perfTicksPerSec; |
| 57 | #else |
| 58 | struct timeval tv; |
| 59 | gettimeofday(&tv, NULL); |
| 60 | return (double)(tv.tv_sec - tickStart) + (double)tv.tv_usec / 1e6; |
| 61 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected