| 1964 | |
| 1965 | |
| 1966 | void DoubleLinkedList::putElement(MemBlock** to, MemBlock* block) |
| 1967 | { |
| 1968 | MemPool* pool = block->pool; |
| 1969 | MemMediumHunk* hunk = block->getHunk(); |
| 1970 | |
| 1971 | SemiDoubleLink::push(to, block); |
| 1972 | |
| 1973 | decrUsage(hunk, pool); |
| 1974 | } |
| 1975 | |
| 1976 | void DoubleLinkedList::decrUsage(MemMediumHunk* hunk, MemPool* pool) |
| 1977 | { |
no test coverage detected