| 2491 | } |
| 2492 | |
| 2493 | void fxStartProfiling(txMachine* the) |
| 2494 | { |
| 2495 | #if defined(mxInstrument) || defined(mxProfile) |
| 2496 | if (the->profiler) |
| 2497 | return; |
| 2498 | // if (the->frame) |
| 2499 | // fxAbort(the, XS_FATAL_CHECK_EXIT); |
| 2500 | fxCreateProfiler(the); |
| 2501 | #endif |
| 2502 | } |
| 2503 | |
| 2504 | void fxStopProfiling(txMachine* the, void* stream) |
| 2505 | { |
no test coverage detected