From 6fb77c70559782a9928432af5cc6f83906a530c1 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sat, 24 Jan 2026 23:24:45 +0200 Subject: make physical memory request a capability + Seems obvious, not sure why I hadn't done it already --- include/kmi/syscalls.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/kmi/syscalls.h b/include/kmi/syscalls.h index a4d2c52..30e46be 100644 --- a/include/kmi/syscalls.h +++ b/include/kmi/syscalls.h @@ -291,7 +291,10 @@ enum sys_cap { CAP_SIGNAL = (1 << 6), /** Thread is allowed to request shared memory */ - CAP_SHARED = (1 << 7) + CAP_SHARED = (1 << 7), + + /** Thread is allowed to request physical memory */ + CAP_PHYSICAL = (1 << 8), }; /** -- cgit v1.3