| 425 | } |
| 426 | |
| 427 | txSlot* fxDuplicateSlot(txMachine* the, txSlot* theSlot) |
| 428 | { |
| 429 | txSlot* result; |
| 430 | |
| 431 | result = fxNewSlot(the); |
| 432 | result->ID = theSlot->ID; |
| 433 | result->kind = theSlot->kind; |
| 434 | result->flag = theSlot->flag & ~XS_MARK_FLAG; |
| 435 | result->value = theSlot->value; |
| 436 | return result; |
| 437 | } |
| 438 | |
| 439 | void* fxFindChunk(txMachine* the, txSize size, txBoolean *once) |
| 440 | { |
no test coverage detected