libc: Add PROT_EXEC

This commit is contained in:
apio 2022-11-02 18:40:05 +01:00
parent 07e518c38f
commit dfcc827103

View File

@ -10,6 +10,7 @@
#define PROT_NONE 0 #define PROT_NONE 0
#define PROT_READ 1 #define PROT_READ 1
#define PROT_WRITE 2 #define PROT_WRITE 2
#define PROT_EXEC 4
#define PAGE_SIZE 4096 #define PAGE_SIZE 4096