diff options
author | tegge <tegge@FreeBSD.org> | 1999-04-11 00:43:43 +0000 |
---|---|---|
committer | tegge <tegge@FreeBSD.org> | 1999-04-11 00:43:43 +0000 |
commit | b149849b9f42fad6d38c86f4412c648001cb7442 (patch) | |
tree | 0c51ad306ea3ff19d9d65123138ed5607a2571b5 /sys/amd64 | |
parent | 0bd640556dc2936bfd58ef064df761d189eea7b4 (diff) | |
download | FreeBSD-src-b149849b9f42fad6d38c86f4412c648001cb7442.zip FreeBSD-src-b149849b9f42fad6d38c86f4412c648001cb7442.tar.gz |
Add prototype for wait_ap().
Diffstat (limited to 'sys/amd64')
-rw-r--r-- | sys/amd64/amd64/mp_machdep.c | 5 | ||||
-rw-r--r-- | sys/amd64/amd64/mptable.c | 5 | ||||
-rw-r--r-- | sys/amd64/include/mptable.h | 5 |
3 files changed, 12 insertions, 3 deletions
diff --git a/sys/amd64/amd64/mp_machdep.c b/sys/amd64/amd64/mp_machdep.c index 6bd4ddc..a6585b0 100644 --- a/sys/amd64/amd64/mp_machdep.c +++ b/sys/amd64/amd64/mp_machdep.c @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mp_machdep.c,v 1.94 1999/04/07 17:08:40 peter Exp $ + * $Id: mp_machdep.c,v 1.95 1999/04/10 22:58:28 tegge Exp $ */ #include "opt_smp.h" @@ -1761,6 +1761,9 @@ init_locks(void) } +/* Wait for all APs to be fully initialized */ +extern int wait_ap(unsigned int); + /* * start each AP in our list */ diff --git a/sys/amd64/amd64/mptable.c b/sys/amd64/amd64/mptable.c index 6bd4ddc..a6585b0 100644 --- a/sys/amd64/amd64/mptable.c +++ b/sys/amd64/amd64/mptable.c @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mp_machdep.c,v 1.94 1999/04/07 17:08:40 peter Exp $ + * $Id: mp_machdep.c,v 1.95 1999/04/10 22:58:28 tegge Exp $ */ #include "opt_smp.h" @@ -1761,6 +1761,9 @@ init_locks(void) } +/* Wait for all APs to be fully initialized */ +extern int wait_ap(unsigned int); + /* * start each AP in our list */ diff --git a/sys/amd64/include/mptable.h b/sys/amd64/include/mptable.h index 6bd4ddc..a6585b0 100644 --- a/sys/amd64/include/mptable.h +++ b/sys/amd64/include/mptable.h @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mp_machdep.c,v 1.94 1999/04/07 17:08:40 peter Exp $ + * $Id: mp_machdep.c,v 1.95 1999/04/10 22:58:28 tegge Exp $ */ #include "opt_smp.h" @@ -1761,6 +1761,9 @@ init_locks(void) } +/* Wait for all APs to be fully initialized */ +extern int wait_ap(unsigned int); + /* * start each AP in our list */ |