(&self)
| 68 | |
| 69 | impl ProcessControlBlock { |
| 70 | pub fn inner_exclusive_access(&self) -> UPIntrRefMut<'_, ProcessControlBlockInner> { |
| 71 | self.inner.exclusive_access() |
| 72 | } |
| 73 | |
| 74 | pub fn new(elf_data: &[u8]) -> Arc<Self> { |
| 75 | // memory_set with elf program headers/trampoline/trap context/user stack |
no test coverage detected