| 3367 | } |
| 3368 | |
| 3369 | txMicroseconds fxGetMicroSeconds() |
| 3370 | { |
| 3371 | #if defined(modMicrosecondsInstrumentation) |
| 3372 | return modMicrosecondsInstrumentation(); |
| 3373 | #elif defined(modMicroseconds) |
| 3374 | return modMicroseconds(); |
| 3375 | #else |
| 3376 | c_timeval tv; |
| 3377 | c_gettimeofday(&tv, NULL); |
| 3378 | return (tv.tv_sec * 1000000ULL) + tv.tv_usec; |
| 3379 | #endif |
| 3380 | } |
| 3381 | |
| 3382 | void fxResumeProfiler(txMachine* the) |
| 3383 | { |
no test coverage detected