(&mut self)
| 180 | |
| 181 | #[allow(unused)] |
| 182 | pub fn alloc_tid(&mut self) { |
| 183 | self.tid = self |
| 184 | .process |
| 185 | .upgrade() |
| 186 | .unwrap() |
| 187 | .inner_exclusive_access() |
| 188 | .alloc_tid(); |
| 189 | } |
| 190 | |
| 191 | pub fn dealloc_tid(&self) { |
| 192 | let process = self.process.upgrade().unwrap(); |
no test coverage detected