]> Zhao Yanbai Git Server - minix.git/commitdiff
Kernel: small comment fix (Bug#562, reported by Ryan Riley)
authorDavid van Moolenbroek <david@minix3.org>
Fri, 25 Feb 2011 16:46:30 +0000 (16:46 +0000)
committerDavid van Moolenbroek <david@minix3.org>
Fri, 25 Feb 2011 16:46:30 +0000 (16:46 +0000)
kernel/proc.c

index cb972bec14d2cfd4bfbc5bb3424e1f80844b9c8f..88baa17b9842b29b7571b5e564797a14f7cbdd1e 100644 (file)
@@ -1537,7 +1537,7 @@ PRIVATE struct proc * pick_proc(void)
  * When a billable process is selected, record it in 'bill_ptr', so that the 
  * clock task can tell who to bill for system time.
  *
- * This functions always uses the run queues of the local cpu!
+ * This function always uses the run queues of the local cpu!
  */
   register struct proc *rp;                    /* process to run */
   struct proc **rdy_head;
@@ -1545,7 +1545,7 @@ PRIVATE struct proc * pick_proc(void)
 
   /* Check each of the scheduling queues for ready processes. The number of
    * queues is defined in proc.h, and priorities are set in the task table.
-   * The lowest queue contains IDLE, which is always ready.
+   * If there are no processes ready to run, return NULL.
    */
   rdy_head = get_cpulocal_var(run_q_head);
   for (q=0; q < NR_SCHED_QUEUES; q++) {