summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2014-12-19 23:57:43 +0100
committercinap_lenrek <cinap_lenrek@felloff.net>2014-12-19 23:57:43 +0100
commit2d06aac2abbd22757b6aa33b4fdc0c9ead4b7d50 (patch)
treecccb9d6da92186117fd851682a1f119a9528d18c
parent7523131e78a0974154cc90272b41991435b1ec19 (diff)
pc, pc64: adjust mpshutdown() comment to reflect the current state
-rw-r--r--sys/src/9/pc/main.c4
-rw-r--r--sys/src/9/pc64/main.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/src/9/pc/main.c b/sys/src/9/pc/main.c
index 0361f3509..9d95c9f8a 100644
--- a/sys/src/9/pc/main.c
+++ b/sys/src/9/pc/main.c
@@ -905,8 +905,8 @@ shutdown(int ispanic)
once = active.machs & (1<<m->machno);
/*
* setting exiting will make hzclock() on each processor call exit(0),
- * which calls shutdown(0) and arch->reset(), which on mp systems is
- * mpshutdown, from which there is no return: the processor is idled
+ * which calls shutdown(0) and arch->reset(), which on mp systems calls
+ * mpshutdown(), from which there is no return: the processor is idled
* or initiates a reboot. clearing our bit in machs avoids calling
* exit(0) from hzclock() on this processor.
*/
diff --git a/sys/src/9/pc64/main.c b/sys/src/9/pc64/main.c
index ee67d0b52..087450c55 100644
--- a/sys/src/9/pc64/main.c
+++ b/sys/src/9/pc64/main.c
@@ -537,8 +537,8 @@ shutdown(int ispanic)
once = active.machs & (1<<m->machno);
/*
* setting exiting will make hzclock() on each processor call exit(0),
- * which calls shutdown(0) and arch->reset(), which on mp systems is
- * mpshutdown, from which there is no return: the processor is idled
+ * which calls shutdown(0) and arch->reset(), which on mp systems calls
+ * mpshutdown(), from which there is no return: the processor is idled
* or initiates a reboot. clearing our bit in machs avoids calling
* exit(0) from hzclock() on this processor.
*/