summaryrefslogtreecommitdiff
path: root/sys/include/vm/pmap.h
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-02-26 23:00:49 -0500
committerIan Moffett <ian@osmora.org>2024-02-26 23:01:43 -0500
commit0584b545dfa1136ca080863f2fca988b9af5fd2b (patch)
tree00780d9b2477e8e50497319720964c3a614e7658 /sys/include/vm/pmap.h
parent0425722963289ba8ef65d9cc7a1c7bc82d27914f (diff)
kernel: pmap: Use PROT_ instead of PMAP_ prefix
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include/vm/pmap.h')
-rw-r--r--sys/include/vm/pmap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/include/vm/pmap.h b/sys/include/vm/pmap.h
index 6e37a00..7a8d577 100644
--- a/sys/include/vm/pmap.h
+++ b/sys/include/vm/pmap.h
@@ -50,8 +50,8 @@
#include <sys/spinlock.h>
/* prot flags for mappings */
-#define PMAP_WRITABLE __BIT(0) /* Writable */
-#define PMAP_EXEC __BIT(1) /* Executable */
+#define PROT_WRITE __BIT(0) /* Writable */
+#define PROT_EXEC __BIT(1) /* Executable */
#define is_vas_valid(vas) (vas.top_level != 0)