Put this task in the run queue. */
| 103 | |
| 104 | /* Put this task in the run queue. */ |
| 105 | void task::add_to_runqueue() |
| 106 | { |
| 107 | this->runit = running_tasks.insert(running_tasks.end(), this); |
| 108 | this->running = true; |
| 109 | } |
| 110 | |
| 111 | void task::add_to_paused_tasks(bool increment) |
| 112 | { |
no test coverage detected