| 1784 | } |
| 1785 | |
| 1786 | void fxReadSlotTable(txMachine* the, txSnapshot* snapshot, txSlot** address, txSize length) |
| 1787 | { |
| 1788 | while (length > 0) { |
| 1789 | *address = fxUnprojectSlot(the, snapshot, *address); |
| 1790 | address++; |
| 1791 | length--; |
| 1792 | } |
| 1793 | } |
| 1794 | |
| 1795 | void fxUnlinkChunks(txMachine* the) |
| 1796 | { |
no test coverage detected