diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-09-22 17:36:18 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-09-22 17:36:18 +0300 |
| commit | ae3905ebeb415e12667777463e36df6e00ca992c (patch) | |
| tree | 18d1c528a16fafeeb0b2c15d6c54a0077c573f9d /include/apos/syscalls.h | |
| parent | ba8c7b300fbbf062453ef8858fac0f84dd25a518 (diff) | |
| download | kmi-ae3905ebeb415e12667777463e36df6e00ca992c.tar.gz kmi-ae3905ebeb415e12667777463e36df6e00ca992c.zip | |
add assign syscall skeleton
Diffstat (limited to 'include/apos/syscalls.h')
| -rw-r--r-- | include/apos/syscalls.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/apos/syscalls.h b/include/apos/syscalls.h index 1746255..5a3f2eb 100644 --- a/include/apos/syscalls.h +++ b/include/apos/syscalls.h @@ -81,7 +81,7 @@ enum { SYS_IPC_RESP, /** IPC notify thread, essentially interrupt or signal. */ - SYS_IPC_NOTIFY + SYS_IPC_NOTIFY, /** @} */ /** @name Process management. */ @@ -101,6 +101,9 @@ enum { /** Switch running process. */ SYS_SWAP, + /** Assign thread to cpu. */ + SYS_ASSIGN, + /** @} */ /** @name Kernel management. */ |
