aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/kmi/syscalls.h5
1 files changed, 4 insertions, 1 deletions
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),
};
/**