From 1a0188fac0c0f265c4495b83592389b8b3645462 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sun, 13 Nov 2022 17:16:28 +0200 Subject: outline rpc stack handling --- include/apos/caps.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'include/apos/caps.h') diff --git a/include/apos/caps.h b/include/apos/caps.h index be64663..e762d0f 100644 --- a/include/apos/caps.h +++ b/include/apos/caps.h @@ -20,7 +20,7 @@ enum { /** Thread is allowed to set capabilities of other threads. */ CAP_CAPS = (1 << 0), - /** Thread is allowed to modify process statuses, exec/fork/etc. */ + /** Thread is allowed to modify process statuses, create/exec/fork/etc. */ CAP_PROC = (1 << 1), /** Thread is allowed to force interrupt to callback in other thread. */ @@ -28,6 +28,9 @@ enum { /** Thread is allowed to shut down system. */ CAP_POWER = (1 << 3), + + /** Thread is allowed to access configuration parameters. */ + CAP_CONF = (1 << 4), }; /** -- cgit v1.3