Deleted Added
full compact
smp.h (167273) smp.h (169730)
1/*-
2 * ----------------------------------------------------------------------------
3 * "THE BEER-WARE LICENSE" (Revision 42):
4 * <phk@FreeBSD.org> wrote this file. As long as you retain this notice you
5 * can do whatever you want with this stuff. If we meet some day, and you think
6 * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
7 * ----------------------------------------------------------------------------
8 *
1/*-
2 * ----------------------------------------------------------------------------
3 * "THE BEER-WARE LICENSE" (Revision 42):
4 * <phk@FreeBSD.org> wrote this file. As long as you retain this notice you
5 * can do whatever you want with this stuff. If we meet some day, and you think
6 * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
7 * ----------------------------------------------------------------------------
8 *
9 * $FreeBSD: head/sys/amd64/include/smp.h 167273 2007-03-06 17:16:47Z jhb $
9 * $FreeBSD: head/sys/amd64/include/smp.h 169730 2007-05-19 05:01:43Z kan $
10 *
11 */
12
13#ifndef _MACHINE_SMP_H_
14#define _MACHINE_SMP_H_
15
16#ifdef _KERNEL
17
18#ifdef SMP
19
20#ifndef LOCORE
21
22#include <sys/bus.h>
23#include <machine/frame.h>
24#include <machine/intr_machdep.h>
25#include <machine/apicvar.h>
10 *
11 */
12
13#ifndef _MACHINE_SMP_H_
14#define _MACHINE_SMP_H_
15
16#ifdef _KERNEL
17
18#ifdef SMP
19
20#ifndef LOCORE
21
22#include <sys/bus.h>
23#include <machine/frame.h>
24#include <machine/intr_machdep.h>
25#include <machine/apicvar.h>
26#include <machine/pcb.h>
26
27/* global symbols in mpboot.S */
28extern char mptramp_start[];
29extern char mptramp_end[];
30extern u_int32_t mptramp_pagetables;
31
32/* global data in mp_machdep.c */
33extern int mp_naps;

--- 45 unchanged lines hidden ---
27
28/* global symbols in mpboot.S */
29extern char mptramp_start[];
30extern char mptramp_end[];
31extern u_int32_t mptramp_pagetables;
32
33/* global data in mp_machdep.c */
34extern int mp_naps;

--- 45 unchanged lines hidden ---