diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-12-19 23:57:43 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-12-19 23:57:43 +0100 |
commit | 2d06aac2abbd22757b6aa33b4fdc0c9ead4b7d50 (patch) | |
tree | cccb9d6da92186117fd851682a1f119a9528d18c /sys/src | |
parent | 7523131e78a0974154cc90272b41991435b1ec19 (diff) |
pc, pc64: adjust mpshutdown() comment to reflect the current state
Diffstat (limited to 'sys/src')
-rw-r--r-- | sys/src/9/pc/main.c | 4 | ||||
-rw-r--r-- | sys/src/9/pc64/main.c | 4 |
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. */ |