| 1853 | } |
| 1854 | |
| 1855 | void fxForget(txMachine* the, txSlot* theSlot) |
| 1856 | { |
| 1857 | if (!(theSlot->flag & XS_MARK_FLAG)) { |
| 1858 | txSlot* aSlot = the->cRoot; |
| 1859 | txSlot** aSlotAddr = &(the->cRoot); |
| 1860 | while ((aSlot = *aSlotAddr)) { |
| 1861 | if (aSlot == theSlot) { |
| 1862 | *aSlotAddr = aSlot->next; |
| 1863 | return; |
| 1864 | } |
| 1865 | aSlotAddr = &(aSlot->next); |
| 1866 | } |
| 1867 | } |
| 1868 | } |
| 1869 | |
| 1870 | void fxAccess(txMachine* the, txSlot* theSlot) |
| 1871 | { |
no outgoing calls
no test coverage detected