diff options
| -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. */ |
