diff options
author | Anton Kling <anton@kling.gg> | 2024-12-12 13:15:33 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-12-12 15:48:20 +0100 |
commit | dcbcdbdc5bcfb86eca05fb655e3bf009d89e39e0 (patch) | |
tree | acf6950403c27ab28830af3023daaa14c161ca85 | |
parent | 633feeea57c298306d8664c9c2768ab46fb7c6f4 (diff) |
kernel: Fix/improve cleanup of process after exit
-rw-r--r-- | kernel/sched/scheduler.c | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/kernel/sched/scheduler.c b/kernel/sched/scheduler.c index 1b36e8a..43d330a 100644 --- a/kernel/sched/scheduler.c +++ b/kernel/sched/scheduler.c @@ -99,6 +99,9 @@ process_t *create_process(process_t *p, u32 esp, u32 eip) { return NULL; } r->reference_count = 1; + if (p) { + r->reference_count++; + } r->tcb = kcalloc(1, sizeof(struct TCB)); if (!r->tcb) { kfree(r); @@ -213,6 +216,10 @@ void process_remove_reference(process_t *p) { assert(0 != p->reference_count); p->reference_count--; if (0 == p->reference_count) { + process_t *t = ready_queue; + for (; t; t = t->next) { + assert(t != p); + } kfree(p); } } @@ -249,9 +256,21 @@ void exit_process(process_t *p, int status) { tmp = tmp->next; } free_process(p); - if (current_task == p) { + if (current_task != p) { + process_remove_reference(p); + return; + } + assert(0 != p->reference_count); + p->reference_count--; + if (0 != p->reference_count) { switch_task(); + return; } + assert(current_task != ready_queue); + process_t *tmp = current_task; + current_task = ready_queue; + kfree(tmp); + switch_task(); } void exit(int status) { |