| 258 | |
| 259 | |
| 260 | void |
| 261 | MultitaskController::cleanup(void) |
| 262 | { |
| 263 | for (auto p : this->deadList) { |
| 264 | this->reverseTaskMap.remove(p->task()); |
| 265 | delete p; |
| 266 | } |
| 267 | |
| 268 | this->deadList.clear(); |
| 269 | } |
| 270 | |
| 271 | |
| 272 | ////////////////////////////////////// Slots /////////////////////////////////// |
no test coverage detected