| 839 | |
| 840 | #if mxKeysGarbageCollection |
| 841 | void fxMarkID(txMachine* the, txID id) |
| 842 | { |
| 843 | txSlot* slot; |
| 844 | if (id == XS_NO_ID) |
| 845 | return; |
| 846 | if (id < the->keyOffset) |
| 847 | return; |
| 848 | id -= the->keyOffset; |
| 849 | slot = the->keyArray[id]; |
| 850 | slot->flag |= XS_MARK_FLAG; |
| 851 | } |
| 852 | #endif |
| 853 | |
| 854 | void fxMarkFinalizationRegistry(txMachine* the, txSlot* registry) |
no outgoing calls
no test coverage detected