minor bug fix in sys_kill

This commit is contained in:
TXuian
2025-01-07 22:15:15 +08:00
parent fd95d9a7de
commit 42b17738ee
5 changed files with 9 additions and 10 deletions
@@ -118,7 +118,7 @@ struct TaskLifecycleOperations {
/* new a task control block, checkout #sys_spawn for usage */
struct Thread* (*new_thread)(struct MemSpace* pmemspace);
/* free a task control block, this calls #free_user_pgdir to free all vitual spaces */
void (*free_pcb)(struct Thread*);
void (*free_thread)(struct Thread*);
};
struct XiziTaskManager {