diff options
Diffstat (limited to 'sys/mu/mmu_stub.c')
| -rw-r--r-- | sys/mu/mmu_stub.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/sys/mu/mmu_stub.c b/sys/mu/mmu_stub.c index d2ab1eb..586edd4 100644 --- a/sys/mu/mmu_stub.c +++ b/sys/mu/mmu_stub.c @@ -30,6 +30,24 @@ #include <sys/cdefs.h> #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; +} + __weak void mu_pmap_init(void) { |
