| 3380 | } |
| 3381 | |
| 3382 | void fxResumeProfiler(txMachine* the) |
| 3383 | { |
| 3384 | txProfiler* profiler = the->profiler; |
| 3385 | if (!profiler) |
| 3386 | return; |
| 3387 | txMicroseconds delta = fxGetMicroSeconds(); |
| 3388 | fxSendProfilerTime(the, "resume", delta); |
| 3389 | delta -= profiler->stop; |
| 3390 | profiler->when += delta; |
| 3391 | profiler->former += delta; |
| 3392 | } |
| 3393 | |
| 3394 | void fxSendProfilerRecord(txMachine* the, txSlot* frame, txID id, txSlot* code) |
| 3395 | { |
no test coverage detected