| 3482 | } |
| 3483 | |
| 3484 | void fxSuspendProfiler(txMachine* the) |
| 3485 | { |
| 3486 | txProfiler* profiler = the->profiler; |
| 3487 | if (!profiler) |
| 3488 | return; |
| 3489 | profiler->stop = fxGetMicroSeconds(); |
| 3490 | fxSendProfilerTime(the, "suspend", profiler->stop); |
| 3491 | } |
| 3492 | |
| 3493 | #endif /* mxInstrument */ |
no test coverage detected