diff options
Diffstat (limited to 'kern/priority.c')
-rw-r--r-- | kern/priority.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kern/priority.c b/kern/priority.c index d9ded857..587ea2f9 100644 --- a/kern/priority.c +++ b/kern/priority.c @@ -74,11 +74,11 @@ * Called only from clock_interrupt(). */ -void thread_quantum_update(mycpu, thread, nticks, state) - int mycpu; - thread_t thread; - int nticks; - int state; +void thread_quantum_update( + int mycpu, + thread_t thread, + int nticks, + int state) { int quantum; processor_t myprocessor; |