diff --git a/sys/arch/alpha/alpha/machdep.c b/sys/arch/alpha/alpha/machdep.c index 4df69dd6485f..5b644ff4efd1 100644 --- a/sys/arch/alpha/alpha/machdep.c +++ b/sys/arch/alpha/alpha/machdep.c @@ -1,4 +1,4 @@ -/* $NetBSD: machdep.c,v 1.148 1998/09/29 07:07:09 thorpej Exp $ */ +/* $NetBSD: machdep.c,v 1.149 1998/09/29 21:59:33 thorpej Exp $ */ /*- * Copyright (c) 1998 The NetBSD Foundation, Inc. @@ -81,7 +81,7 @@ #include /* RCS ID & Copyright macro defns */ -__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.148 1998/09/29 07:07:09 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.149 1998/09/29 21:59:33 thorpej Exp $"); #include #include @@ -1328,6 +1328,7 @@ haltsys: doshutdownhooks(); #if defined(MULTIPROCESSOR) +#if 0 /* XXX doesn't work when called from here?! */ /* Kill off any secondary CPUs. */ for (cpu_id = 0; cpu_id < hwrpb->rpb_pcs_cnt; cpu_id++) { if (cpu_id == hwrpb->rpb_primary_cpu_id || @@ -1336,6 +1337,7 @@ haltsys: cpu_halt_secondary(cpu_id); } #endif +#endif #ifdef BOOTKEY printf("hit any key to %s...\n", howto & RB_HALT ? "halt" : "reboot");