diff options
author | Ian Moffett <ian@osmora.org> | 2025-06-19 12:34:12 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-06-19 12:34:12 -0400 |
commit | 4a45078c01dc83e95f70b65d244c388ec62c0b98 (patch) | |
tree | 394e7426b094629e61d7d3774e77d436fc554321 /sys/arch/amd64 | |
parent | 2755ec87c7dae278d1e0cecfb1dbad9ef931b4ee (diff) |
kernel: pmap: Add arch-shared pmap_init() routine
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r-- | sys/arch/amd64/amd64/pmap.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/arch/amd64/amd64/pmap.c b/sys/arch/amd64/amd64/pmap.c index 8193838..325ce51 100644 --- a/sys/arch/amd64/amd64/pmap.c +++ b/sys/arch/amd64/amd64/pmap.c @@ -344,3 +344,9 @@ pmap_mark_clean(struct vas vas, vaddr_t va) __invlpg(va); } } + +int +pmap_init(void) +{ + return 0; +} |