Get a mutable reference to the thread Context
(&self)
| 161 | |
| 162 | /// Get a mutable reference to the thread Context |
| 163 | fn context_mut(&self) -> &mut Context { |
| 164 | unsafe {&mut *(self.context as *mut Context)} |
| 165 | } |
| 166 | |
| 167 | pub fn set_context(&mut self, context_ptr: *mut Context) { |
| 168 | self.context = context_ptr as u64; |
no outgoing calls
no test coverage detected