]> Zhao Yanbai Git Server - minix.git/commitdiff
fix some comment typo's
authorQi Yong <qiyong@fc-cn.com>
Sun, 26 May 2013 14:11:59 +0000 (14:11 +0000)
committerBen Gras <ben@minix3.org>
Sun, 26 May 2013 14:12:54 +0000 (14:12 +0000)
Change-Id: Ic9f4333613abb858bfc28f72685424557cf2cd40

kernel/proc.c
usr.sbin/mkfs.mfs/mkfs.c

index e60e550717591b0de5ebc59cccbc91772b59a927..6dcaf9125d01ea46fcd4b86acaf09a999f0f5a33 100644 (file)
@@ -246,7 +246,7 @@ void switch_to_user(void)
        /*
         * if a process becomes not runnable while handling the misc flags, we
         * need to pick a new one here and start from scratch. Also if the
-        * current process wasn' runnable, we pick a new one here
+        * current process wasn't runnable, we pick a new one here
         */
 not_runnable_pick_new:
        if (proc_is_preempted(p)) {
@@ -261,7 +261,7 @@ not_runnable_pick_new:
 
        /*
         * if we have no process to run, set IDLE as the current process for
-        * time accounting and put the cpu in and idle state. After the next
+        * time accounting and put the cpu in an idle state. After the next
         * timer interrupt the execution resumes here and we can pick another
         * process. If there is still nothing runnable we "schedule" IDLE again
         */
@@ -1604,7 +1604,7 @@ static void enqueue_head(struct proc *rp)
 
   /*
    * the process was runnable without its quantum expired when dequeued. A
-   * process with no time left should vahe been handled else and differently
+   * process with no time left should have been handled else and differently
    */
   assert(!is_zero64(rp->p_cpu_time_left));
 
index b934ec43f0d71f49faaa486085063bad17d0a6fd..1806b8007c4e0530d42c7347b6e28cb9e1a79a03 100644 (file)
@@ -72,7 +72,7 @@ typedef uint32_t bitchunk_t;  /* collection of bits in a bitmap */
 struct fs_size {
   ino_t inocount; /* amount of inodes */
   zone_t zonecount; /* amount of zones */
-  block_t blockcount; /* amount of bloks */
+  block_t blockcount; /* amount of blocks */
 };
 
 extern char *optarg;