]> Zhao Yanbai Git Server - minix.git/commitdiff
Al's comment fixes.
authorBen Gras <ben@minix3.org>
Mon, 3 Oct 2005 14:24:11 +0000 (14:24 +0000)
committerBen Gras <ben@minix3.org>
Mon, 3 Oct 2005 14:24:11 +0000 (14:24 +0000)
kernel/main.c
kernel/proc.c
kernel/system.c

index 7f9c0a2a51bdb8f359becb6a0bfeae6cff42b804..3f542f777cd8e1008c58775647c5fbbb9c2ca3ed 100755 (executable)
@@ -193,7 +193,7 @@ int how;
   register struct proc *rp; 
   message m;
 
-  /* Show debugging dumps on panics. Make sure that the TTY task is still 
+  /* Show debugging dumps on panics. Make sure that the TTY driver is still 
    * available to handle them. This is done with help of a non-blocking send. 
    * We rely on TTY to call sys_abort() when it is done with the dumps.
    */
index f91e80b176d607650d62187c5228c21386f48511..d613ed8eed15f13eda488521dda8ebcdfc0b6832 100755 (executable)
@@ -546,7 +546,7 @@ PRIVATE void pick_proc()
   int q;                                       /* iterate over queues */
 
   /* 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.
+   * queues is defined in proc.h, and priorities are set in the image table.
    * The lowest queue contains IDLE, which is always ready.
    */
   for (q=0; q < NR_SCHED_QUEUES; q++) {        
index 5019dd94ea36e88d086499be9369a2d94580363c..c54ec3bbd2f9dfb949fb2b0d769b863b2e4ba491 100755 (executable)
@@ -1,8 +1,8 @@
-/* This task handles the interface between the kernel and user-level servers.
- * System services can be accessed by doing a system call. System calls are 
- * transformed into request messages, which are handled by this task. By 
- * convention, a sys_call() is transformed in a SYS_CALL request message that
- * is handled in a function named do_call(). 
+/* This task handles the interface between the kernel and user-space system
+ * processes. System services can be accessed by doing a system call. System
+ * calls are transformed into request messages, which are handled by this
+ * task. By convention, a sys_call() is transformed in a SYS_CALL request
+ * message that is handled in a function named do_call(). 
  *
  * A private call vector is used to map all system calls to the functions that
  * handle them. The actual handler functions are contained in separate files