tasking: fix idle task creation & make task_create take EntryPoint type argument

This commit is contained in:
2025-04-01 17:14:25 +03:00
parent cb3d25f490
commit f660beb3a7
2 changed files with 8 additions and 7 deletions
-1
View File
@@ -24,7 +24,6 @@ typedef struct Process
struct Process* next; // Pointer to the next task in the list
} Process;
//Process* task_create(EntryPoint func);
Process* task_create(EntryPoint func, void** args, uint32_t arg_count);
void scheduler_init();
void schedule();