| 1820 | /* Garbage Collector */ |
| 1821 | |
| 1822 | void fxCollectGarbage(txMachine* the) |
| 1823 | { |
| 1824 | fxCollect(the, XS_COMPACT_FLAG | XS_COLLECT_KEYS_FLAG); |
| 1825 | } |
| 1826 | |
| 1827 | void fxEnableGarbageCollection(txMachine* the, txBoolean enableIt) |
| 1828 | { |
no test coverage detected