sched: task: optional handle_table pointer can now be passed to task_create

This commit is contained in:
2026-04-19 20:04:18 +01:00
parent b52890d842
commit 9a9b0f63ba
4 changed files with 19 additions and 6 deletions
+1 -1
View File
@@ -108,7 +108,7 @@ void kernel_init(uintptr_t arg)
bsp.bsp_trailer.bsp_exec_entry,
bsp.bsp_vmo);
struct task *bootstrap_task = task_create("bootstrap", 9);
struct task *bootstrap_task = task_create("bootstrap", 9, NULL);
tracek("created bootstrap task (pid=%u)", bootstrap_task->t_id);
status = bsp_launch_async(&bsp, bootstrap_task);