| 3304 | } |
| 3305 | |
| 3306 | void fxDeleteProfiler(txMachine* the, void* stream) |
| 3307 | { |
| 3308 | txProfiler* profiler = the->profiler; |
| 3309 | fxSendProfilerTime(the, "stop", fxGetMicroSeconds()); |
| 3310 | c_free(profiler->samples); |
| 3311 | c_free(profiler->records); |
| 3312 | c_free(profiler); |
| 3313 | the->profiler = C_NULL; |
| 3314 | } |
| 3315 | |
| 3316 | #ifdef mxDebug |
| 3317 | void fxEchoUnsigned(txMachine* the, txUnsigned value, txInteger radix) |
no test coverage detected