diff options
Diffstat (limited to 'sys/mu/mmu_stub.c')
| -rw-r--r-- | sys/mu/mmu_stub.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sys/mu/mmu_stub.c b/sys/mu/mmu_stub.c index b53c3a4..586edd4 100644 --- a/sys/mu/mmu_stub.c +++ b/sys/mu/mmu_stub.c @@ -31,6 +31,18 @@ #include <mu/mmu.h> __weak int +mu_pmap_map(struct mmu_vas *vas, uintptr_t pa, uintptr_t va, uint16_t prot, + pagesize_t ps) + +{ + (void)vas; + (void)pa; + (void)va; + (void)prot; + (void)ps; +} + +__weak int mu_pmap_forkvas(struct mmu_vas *result) { (void)result; |
