get/setpriority() and fsync() system calls

This commit is contained in:
Ben Gras
2005-07-01 18:01:33 +00:00
parent 7a31b9aa12
commit 3dcb2886ff
11 changed files with 130 additions and 4 deletions

View File

@@ -525,7 +525,7 @@ struct proc *sched_ptr; /* quantum eating process */
unready(sched_ptr); /* remove from queues */
sched_ptr->p_priority ++; /* lower priority */
ready(sched_ptr); /* add to new queue */
kprintf("Warning, proc %d got lower priority:\n", sched_ptr->p_nr);
kprintf("Warning, proc %d got lower priority: ", sched_ptr->p_nr);
kprintf("%d\n", sched_ptr->p_priority);
}
sched_ptr->p_full_quantums = QUANTUMS(sched_ptr->p_priority);