| 2284 | } |
| 2285 | |
| 2286 | void fxWriteSlots(txMachine* the, txSnapshot* snapshot) |
| 2287 | { |
| 2288 | size_t slotSize = snapshot->slotSize; |
| 2289 | txSlot** slots = snapshot->slots; |
| 2290 | slotSize--; |
| 2291 | slots++; |
| 2292 | while (slotSize) { |
| 2293 | txSlot* slot = *slots; |
| 2294 | fxWriteSlot(the, snapshot, slot, 1); |
| 2295 | slotSize--; |
| 2296 | slots++; |
| 2297 | } |
| 2298 | } |
| 2299 | |
| 2300 | void fxWriteStack(txMachine* the, txSnapshot* snapshot) |
| 2301 | { |
no test coverage detected