diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-11-13 17:16:28 +0200 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-11-13 17:16:28 +0200 |
| commit | 1a0188fac0c0f265c4495b83592389b8b3645462 (patch) | |
| tree | c1687724dd7f7ccf6d9d0d134c2766f14d3e39f5 /include/apos/caps.h | |
| parent | e6dc962ef7758c438039d7f8ac7e2bf3ebcb5c10 (diff) | |
| download | kmi-1a0188fac0c0f265c4495b83592389b8b3645462.tar.gz kmi-1a0188fac0c0f265c4495b83592389b8b3645462.zip | |
outline rpc stack handling
Diffstat (limited to 'include/apos/caps.h')
| -rw-r--r-- | include/apos/caps.h | 5 |
1 files changed, 4 insertions, 1 deletions
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), }; /** |
