diff options
author | Ian Moffett <ian@osmora.org> | 2024-05-23 19:36:54 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-05-23 19:48:18 -0400 |
commit | a0bb2191d900631acd33276a028397b0a9b3fb5d (patch) | |
tree | 38deb87917c56d7e516f9c5b5dc68438b7ad6e5c /sys/arch/amd64 | |
parent | 5f27480f26cb3c3329fdf4f1d7047ee11c6d1a95 (diff) |
kernel/amd64: pmap: Add pmap_init()
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 54d4ca3..8af6d39 100644 --- a/sys/arch/amd64/amd64/pmap.c +++ b/sys/arch/amd64/amd64/pmap.c @@ -257,3 +257,9 @@ pmap_read_vas(void) vas.lock.lock = 0; return vas; } + +int +pmap_init(struct vm_ctx *ctx) +{ + return 0; +} |