| 91 | } |
| 92 | |
| 93 | void SC::ProcessChain::ProcessLinkedList::clear() |
| 94 | { |
| 95 | Process* current = front; |
| 96 | while (current != nullptr) |
| 97 | { |
| 98 | Process* next = current->next; |
| 99 | current->next = nullptr; |
| 100 | current->prev = nullptr; |
| 101 | current = next; |
| 102 | } |
| 103 | back = nullptr; |
| 104 | front = nullptr; |
| 105 | } |
| 106 | |
| 107 | void SC::ProcessChain::ProcessLinkedList::queueBack(Process& process) |
| 108 | { |
no outgoing calls
no test coverage detected