| 279 | } |
| 280 | |
| 281 | txU8 fxGetTicks() |
| 282 | { |
| 283 | #if mxMacOSX |
| 284 | return clock_gettime_nsec_np(CLOCK_MONOTONIC); |
| 285 | #elif mxWindows |
| 286 | LARGE_INTEGER counter; |
| 287 | QueryPerformanceCounter(&counter); |
| 288 | return counter.QuadPart; |
| 289 | #else |
| 290 | c_timeval tv; |
| 291 | c_gettimeofday(&tv, NULL); |
| 292 | return (tv.tv_sec * 1000000ULL) + tv.tv_usec; |
| 293 | #endif |
| 294 | } |
| 295 | |
| 296 | void fxInsertProfilerCallee(txMachine* the, txProfilerRecord* record, txID recordID) |
| 297 | { |
no test coverage detected