aboutsummaryrefslogtreecommitdiff
path: root/include/apos/caps.h
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2022-09-22 17:36:18 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2022-09-22 17:36:18 +0300
commitae3905ebeb415e12667777463e36df6e00ca992c (patch)
tree18d1c528a16fafeeb0b2c15d6c54a0077c573f9d /include/apos/caps.h
parentba8c7b300fbbf062453ef8858fac0f84dd25a518 (diff)
downloadkmi-ae3905ebeb415e12667777463e36df6e00ca992c.tar.gz
kmi-ae3905ebeb415e12667777463e36df6e00ca992c.zip
add assign syscall skeleton
Diffstat (limited to 'include/apos/caps.h')
-rw-r--r--include/apos/caps.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/apos/caps.h b/include/apos/caps.h
index e8ef76b..b64b05a 100644
--- a/include/apos/caps.h
+++ b/include/apos/caps.h
@@ -22,6 +22,9 @@ enum {
/** Thread is allowed to force interrupt to callback in other thread. */
CAP_CALL = (1 << 2),
+
+ /** Thread is allowed to assign threads to processors. */
+ CAP_ASSIGN = (1 << 3),
};
/**