aboutsummaryrefslogtreecommitdiff
path: root/kernel/features/proc.c
diff options
context:
space:
mode:
authorMarvin Borner2021-01-21 17:04:15 +0100
committerMarvin Borner2021-01-21 17:04:15 +0100
commitb3fafef621bb4404208e65ff1f78e15da3b216f7 (patch)
tree6f1c610b816f574c77615cb03d5507a4281411dd /kernel/features/proc.c
parentef407d1e965674c5278daeb25a72acf446ec3223 (diff)
Implementing new features...
Diffstat (limited to 'kernel/features/proc.c')
-rw-r--r--kernel/features/proc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/features/proc.c b/kernel/features/proc.c
index 5e918b2..1a3c7e1 100644
--- a/kernel/features/proc.c
+++ b/kernel/features/proc.c
@@ -132,7 +132,7 @@ void proc_exit(struct proc *proc, int status)
void proc_yield(struct regs *r)
{
- //proc_clear_quantum();
+ proc_clear_quantum();
scheduler(r);
}
@@ -145,6 +145,7 @@ void proc_enable_waiting(u32 dev_id)
if (p && w && w->id == dev_id) {
struct regs *r = &p->regs;
r->eax = (u32)w->func((char *)r->ebx, (void *)r->ecx, r->edx, r->esi);
+ memset(&p->wait, 0, sizeof(p->wait));
p->state = PROC_RUNNING;
}
iterator = iterator->next;