| 802 | } |
| 803 | |
| 804 | void espInstrumentMachineBegin(txMachine *the, modTimerCallback instrumentationCallback, int count, char **names, char **units) |
| 805 | { |
| 806 | the->instrumentationCallback = instrumentationCallback; |
| 807 | the->instrumentationTimer = modTimerAdd(0, 1000, instrumentationCallback, &the, sizeof(the)); |
| 808 | modInstrumentationAdjust(Timers, -1); |
| 809 | |
| 810 | #ifdef mxDebug |
| 811 | the->onBreak = espDebugBreak; |
| 812 | #endif |
| 813 | fxDescribeInstrumentation(the, count, names, units); |
| 814 | } |
| 815 | |
| 816 | void espInstrumentMachineEnd(txMachine *the) |
| 817 | { |
no test coverage detected