diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-09-20 15:38:06 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-09-20 15:38:06 +0300 |
| commit | d2f2714398d415eb9a628aab82b332b92ad5c923 (patch) | |
| tree | ce6844c3f6f446b3acefffbd294dfecd3eb8dc98 /include/apos/tcb.h | |
| parent | a717296a2036cede5fccfff544513043a984d614 (diff) | |
| download | kmi-d2f2714398d415eb9a628aab82b332b92ad5c923.tar.gz kmi-d2f2714398d415eb9a628aab82b332b92ad5c923.zip | |
add capability subsystem and syscalls
Diffstat (limited to 'include/apos/tcb.h')
| -rw-r--r-- | include/apos/tcb.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/apos/tcb.h b/include/apos/tcb.h index 9e63a9a..41b5237 100644 --- a/include/apos/tcb.h +++ b/include/apos/tcb.h @@ -10,6 +10,7 @@ */ #include <apos/mem_regions.h> +#include <apos/caps.h> #include <apos/types.h> #include <arch/tcb.h> /* arch-specific data */ @@ -108,8 +109,8 @@ struct tcb { /** Address of callback function in servers. */ vm_t callback; - /** Address of signal callback. */ - vm_t signal; + /** Capabilities of thread. */ + capflags_t caps; /** Address of this thread's stack base. */ vm_t thread_stack; |
