(&self)
| 125 | impl TaskWaker |
| 126 | { |
| 127 | fn awaken_task(&self) |
| 128 | { |
| 129 | self.taskq.push(self.taskid) |
| 130 | .expect("[ERR] TASKQ FULL"); |
| 131 | } |
| 132 | |
| 133 | fn new(taskid: TaskID, taskq: Arc<ArrayQueue<TaskID>>) -> Waker |
| 134 | { |
no outgoing calls
no test coverage detected