()
| 13 | |
| 14 | impl Processor { |
| 15 | pub fn new() -> Self { |
| 16 | Self { |
| 17 | current: None, |
| 18 | idle_task_cx: TaskContext::zero_init(), |
| 19 | } |
| 20 | } |
| 21 | fn get_idle_task_cx_ptr(&mut self) -> *mut TaskContext { |
| 22 | &mut self.idle_task_cx as *mut _ |
| 23 | } |
nothing calls this directly
no outgoing calls
no test coverage detected