| 204 | } |
| 205 | |
| 206 | txSlot* fxQueueKey(txMachine* the, txID id, txIndex index, txSlot* keys) |
| 207 | { |
| 208 | keys = keys->next = fxNewSlot(the); |
| 209 | keys->kind = XS_AT_KIND; |
| 210 | keys->value.at.id = id; |
| 211 | keys->value.at.index = index; |
| 212 | return keys; |
| 213 | } |
| 214 | |
| 215 | txSlot* fxQueueIDKeys(txMachine* the, txSlot* first, txFlag flag, txSlot* keys) |
| 216 | { |
no test coverage detected