| 2274 | } |
| 2275 | |
| 2276 | void fxWriteSlotTable(txMachine* the, txSnapshot* snapshot, txSlot** address, txSize length) |
| 2277 | { |
| 2278 | while (length > 0) { |
| 2279 | txSlot* buffer = fxProjectSlot(the, snapshot->firstProjection, *address); |
| 2280 | mxThrowIf((*snapshot->write)(snapshot->stream, &buffer, sizeof(txSlot*))); |
| 2281 | address++; |
| 2282 | length--; |
| 2283 | } |
| 2284 | } |
| 2285 | |
| 2286 | void fxWriteSlots(txMachine* the, txSnapshot* snapshot) |
| 2287 | { |
no test coverage detected