syscall: task: initial implementation of task_duplicate

This commit is contained in:
2026-04-01 18:40:28 +01:00
parent 304ba8b254
commit b8d3125233
3 changed files with 105 additions and 0 deletions
+3
View File
@@ -66,6 +66,9 @@ extern kern_status_t sys_task_config_set(
kern_config_key_t key,
const void *ptr,
size_t len);
extern kern_status_t sys_task_duplicate(
kern_handle_t *out_task,
kern_handle_t *out_address_space);
extern kern_status_t sys_thread_self(kern_handle_t *out);
extern kern_status_t sys_thread_start(kern_handle_t thread);