| 2299 | } |
| 2300 | |
| 2301 | txSlot* fxFindFrame(txMachine* the) |
| 2302 | { |
| 2303 | txSlot* frame = the->frame; |
| 2304 | while (frame) { |
| 2305 | if (frame->flag & XS_DEBUG_FLAG) |
| 2306 | break; |
| 2307 | frame = frame->next; |
| 2308 | } |
| 2309 | return frame; |
| 2310 | } |
| 2311 | |
| 2312 | txSlot* fxFindRealm(txMachine* the) |
| 2313 | { |
no outgoing calls
no test coverage detected