From 1c94cee872eba2d80d4d66d1e937e5af8bdef23d Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Mon, 13 Aug 2001 22:38:36 +0000 Subject: [PATCH] Minor style nits: cleanup and add some function prototypes. --- sys/alpha/alpha/mp_machdep.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/sys/alpha/alpha/mp_machdep.c b/sys/alpha/alpha/mp_machdep.c index e0421830b1c8..eba0725280de 100644 --- a/sys/alpha/alpha/mp_machdep.c +++ b/sys/alpha/alpha/mp_machdep.c @@ -57,6 +57,11 @@ static struct mtx ap_boot_mtx; u_int boot_cpu_id; +static void release_aps(void *dummy); +extern void smp_init_secondary_glue(void); +static int smp_send_secondary_command(const char *command, int cpuid); +static int smp_start_secondary(int cpuid); + /* * Communicate with a console running on a secondary processor. * Return 1 on failure. @@ -207,8 +212,6 @@ smp_init_secondary(void) panic("scheduler returned us to " __func__); } -extern void smp_init_secondary_glue(void); - static int smp_start_secondary(int cpuid) {