()
| 40 | |
| 41 | impl MemorySet { |
| 42 | pub fn new_bare() -> Self { |
| 43 | Self { |
| 44 | page_table: PageTable::new(), |
| 45 | areas: Vec::new(), |
| 46 | } |
| 47 | } |
| 48 | pub fn token(&self) -> usize { |
| 49 | self.page_table.token() |
| 50 | } |
nothing calls this directly
no outgoing calls
no test coverage detected