summaryrefslogtreecommitdiff
path: root/sys/include
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-06-19 12:34:12 -0400
committerIan Moffett <ian@osmora.org>2025-06-19 12:34:12 -0400
commit4a45078c01dc83e95f70b65d244c388ec62c0b98 (patch)
tree394e7426b094629e61d7d3774e77d436fc554321 /sys/include
parent2755ec87c7dae278d1e0cecfb1dbad9ef931b4ee (diff)
kernel: pmap: Add arch-shared pmap_init() routine
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include')
-rw-r--r--sys/include/vm/pmap.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/include/vm/pmap.h b/sys/include/vm/pmap.h
index e1f3f89..e0549d4 100644
--- a/sys/include/vm/pmap.h
+++ b/sys/include/vm/pmap.h
@@ -92,4 +92,9 @@ void pmap_mark_clean(struct vas vas, vaddr_t va);
*/
int pmap_set_cache(struct vas vas, vaddr_t va, int type);
+/*
+ * Machine dependent pmap init code.
+ */
+int pmap_init(void);
+
#endif /* !_VM_PMAP_H_ */