17 lines
334 B
Rust
17 lines
334 B
Rust
/*
|
|
* SPDX-License-Identifier: BlueOak-1.0.0
|
|
* Copyright (c) Berkus Decker <berkus+vesper@metta.systems>
|
|
*/
|
|
|
|
// L3 tables
|
|
struct PageTable {}
|
|
|
|
impl PageTable {
|
|
fn map(virt_space: VirtSpace /*Cap*/, vaddr: VirtAddr, attr: VMAttributes) -> Result<()> {
|
|
todo!()
|
|
}
|
|
fn unmap() -> Result<()> {
|
|
todo!()
|
|
}
|
|
}
|