From 9ea4f985a53a893d3a125dad776905f04905151d Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Mon, 22 Apr 2024 20:17:44 -0400 Subject: kernel: auxv: Add AT_PAGESIZE Signed-off-by: Ian Moffett --- lib/libc/include/sys/auxv.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/libc') diff --git a/lib/libc/include/sys/auxv.h b/lib/libc/include/sys/auxv.h index b06d01c..a776e05 100644 --- a/lib/libc/include/sys/auxv.h +++ b/lib/libc/include/sys/auxv.h @@ -41,8 +41,9 @@ #define AT_SECURE 6 #define AT_RANDOM 7 #define AT_EXECFN 8 +#define AT_PAGESIZE 9 -#define AT_MAX_COUNT 9 +#define AT_MAX_COUNT 10 struct auxv_entry { uint64_t tag; -- cgit v1.2.3