]> Zhao Yanbai Git Server - minix.git/commitdiff
Al's omment fixes.
authorBen Gras <ben@minix3.org>
Sun, 2 Oct 2005 19:00:17 +0000 (19:00 +0000)
committerBen Gras <ben@minix3.org>
Sun, 2 Oct 2005 19:00:17 +0000 (19:00 +0000)
kernel/main.c
kernel/table.c

index 21d434ad1c4e5ed4badc50a9ef19d989332d98e6..7f9c0a2a51bdb8f359becb6a0bfeae6cff42b804 100755 (executable)
@@ -59,7 +59,7 @@ PUBLIC void main()
        ppriv_addr[i] = sp;                     /* priv ptr from number */
   }
 
-  /* Set up proc table entries for tasks and servers.  The stacks of the
+  /* Set up proc table entries for processes in boot image.  The stacks of the
    * kernel tasks are initialized to an array in data space.  The stacks
    * of the servers have been added to the data segment by the monitor, so
    * the stack pointer is set to the end of the data segment.  All the
index 0f55f32b2e6929f2bf13014cc592ebbca7d7b029..1996debe56cfe857c412f52c6127cee2b670d145 100755 (executable)
@@ -73,7 +73,7 @@ PUBLIC char *t_stack[TOT_STACK_SPACE / sizeof(char *)];
 
 /* Define kernel calls that processes are allowed to make. This is not looking
  * very nice, but we need to define the access rights on a per call basis. 
- * Note that the system services manager has all bits on, because it should
+ * Note that the reincarnation server has all bits on, because it should
  * be allowed to distribute rights to services that it starts. 
  */
 #define c(n)   (1 << ((n)-KERNEL_CALL))