diff options
author | fsmp <fsmp@FreeBSD.org> | 1997-05-28 18:44:11 +0000 |
---|---|---|
committer | fsmp <fsmp@FreeBSD.org> | 1997-05-28 18:44:11 +0000 |
commit | d68cba57cfe95feedc96e11c8ade0571064f6294 (patch) | |
tree | 501bc8e798c53270753fcf1c192641c9095527e6 /sys/i386/include | |
parent | bf79e8222cb484cf2543953dda1b43bc01c074ce (diff) | |
download | FreeBSD-src-d68cba57cfe95feedc96e11c8ade0571064f6294.zip FreeBSD-src-d68cba57cfe95feedc96e11c8ade0571064f6294.tar.gz |
Add declaration of mp_probe().
This is now called directly from machdep.c.
Diffstat (limited to 'sys/i386/include')
-rw-r--r-- | sys/i386/include/smp.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/i386/include/smp.h b/sys/i386/include/smp.h index d8212c7..ca4b2e5 100644 --- a/sys/i386/include/smp.h +++ b/sys/i386/include/smp.h @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: smp.h,v 1.7 1997/05/06 21:29:57 fsmp Exp $ + * $Id: smp.h,v 1.8 1997/05/07 19:53:20 peter Exp $ * */ @@ -57,6 +57,7 @@ extern int apic_id_to_logical[]; /* functions in mp_machdep.c */ u_int mp_bootaddress __P((u_int)); +int mp_probe __P((void)); void mp_start __P((void)); void mp_announce __P((void)); int get_isa_apic_irq __P((int)); |