| 147 | } |
| 148 | |
| 149 | struct TaskWaker { |
| 150 | task_id: TaskId, |
| 151 | task_queue: Arc<ArrayQueue<TaskId>>, |
| 152 | } |
| 153 | impl TaskWaker { |
| 154 | fn wake_task(&self) { |
| 155 | self.task_queue.push(self.task_id).expect("task_queue full"); |
nothing calls this directly
no outgoing calls
no test coverage detected