diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-08-26 23:00:55 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-08-26 23:00:55 +0300 |
| commit | 3f194f1c7264945a63b0018b159cc83bd9385c59 (patch) | |
| tree | 4d277264e75b197844eae154e96e73d9cd54de3a /include/arch | |
| parent | 1b5a553194f47066d60bb1c9475af1f413af8f4a (diff) | |
| download | kmi-3f194f1c7264945a63b0018b159cc83bd9385c59.tar.gz kmi-3f194f1c7264945a63b0018b159cc83bd9385c59.zip | |
fix memory leaks destroying threads
Diffstat (limited to 'include/arch')
| -rw-r--r-- | include/arch/tcb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/arch/tcb.h b/include/arch/tcb.h index b8b0961..f4726ad 100644 --- a/include/arch/tcb.h +++ b/include/arch/tcb.h @@ -32,7 +32,7 @@ void tcb_assign(struct tcb *t); * * @param t Thread whose RPC stack should be set up. */ -void setup_rpc_stack(struct tcb *t); +stat_t setup_rpc_stack(struct tcb *t); /** * Free memory backing rpc stack. |
