| 2298 | } |
| 2299 | |
| 2300 | void fxWriteStack(txMachine* the, txSnapshot* snapshot) |
| 2301 | { |
| 2302 | txSlot* slot = the->stack; |
| 2303 | while (slot < the->stackTop) { |
| 2304 | fxWriteSlot(the, snapshot, slot, 0); |
| 2305 | slot++; |
| 2306 | } |
| 2307 | } |
| 2308 | |
| 2309 | int fxWriteSnapshot(txMachine* the, txSnapshot* snapshot) |
| 2310 | { |
no test coverage detected