Fix comments.
authorBen Pfaff <blp@cs.stanford.edu>
Sat, 2 Oct 2004 23:21:16 +0000 (23:21 +0000)
committerBen Pfaff <blp@cs.stanford.edu>
Sat, 2 Oct 2004 23:21:16 +0000 (23:21 +0000)
src/threads/switch.S
src/threads/switch.h

index 5bb56b55ec1a84de04295b39f23032bd1ae94e2b..16c95180c2d36ec4ebe95bc02d775af26c8a0d4c 100644 (file)
@@ -3,7 +3,7 @@
 #### struct thread *switch_threads (struct thread *cur, struct thread *next);
 ####
 #### Switches from CUR, which must be the running thread, to NEXT,
-#### which must also be running thread_switch(), returning CUR in
+#### which must also be running switch_threads(), returning CUR in
 #### NEXT's context.
 ####
 #### This function works by assuming that the thread we're switching
index 084a79454936a360cc548606d9ba6d8ce9940b59..d79af5d7169614d2b7ba536d47208a5270b312b0 100644 (file)
@@ -10,12 +10,12 @@ struct switch_threads_frame
     uint32_t esi;               /*  8: Saved %esi. */
     uint32_t edi;               /* 12: Saved %edi. */
     void (*eip) (void);         /* 16: Return address. */
-    struct thread *cur;         /* 20: thread_switch()'s CUR argument. */
-    struct thread *next;        /* 24: thread_switch()'s NEXT argument. */
+    struct thread *cur;         /* 20: switch_threads()'s CUR argument. */
+    struct thread *next;        /* 24: switch_threads()'s NEXT argument. */
   };
 
 /* Switches from CUR, which must be the running thread, to NEXT,
-   which must also be running thread_switch(), returning CUR in
+   which must also be running switch_threads(), returning CUR in
    NEXT's context. */
 struct thread *switch_threads (struct thread *cur, struct thread *next);