Deleted Added
full compact
smp.h (256281) smp.h (264118)
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: stable/10/sys/i386/include/smp.h 255331 2013-09-06 22:17:02Z gibbs $
9 * $FreeBSD: stable/10/sys/i386/include/smp.h 264118 2014-04-04 14:54:54Z royger $
10 *
11 */
12
13#ifndef _MACHINE_SMP_H_
14#define _MACHINE_SMP_H_
15
16#ifdef _KERNEL
17

--- 40 unchanged lines hidden (view full) ---

58 IDTVEC(lazypmap); /* handle lazy pmap release */
59
60/* functions in mp_machdep.c */
61void cpu_add(u_int apic_id, char boot_cpu);
62void cpustop_handler(void);
63#ifndef XEN
64void cpususpend_handler(void);
65#endif
10 *
11 */
12
13#ifndef _MACHINE_SMP_H_
14#define _MACHINE_SMP_H_
15
16#ifdef _KERNEL
17

--- 40 unchanged lines hidden (view full) ---

58 IDTVEC(lazypmap); /* handle lazy pmap release */
59
60/* functions in mp_machdep.c */
61void cpu_add(u_int apic_id, char boot_cpu);
62void cpustop_handler(void);
63#ifndef XEN
64void cpususpend_handler(void);
65#endif
66void invltlb_handler(void);
67void invlpg_handler(void);
68void invlrng_handler(void);
69void invlcache_handler(void);
66void init_secondary(void);
67void ipi_startup(int apic_id, int vector);
68void ipi_all_but_self(u_int ipi);
69#ifndef XEN
70void ipi_bitmap_handler(struct trapframe frame);
71#endif
72void ipi_cpu(int cpu, u_int ipi);
73int ipi_nmi_handler(void);

--- 19 unchanged lines hidden ---
70void init_secondary(void);
71void ipi_startup(int apic_id, int vector);
72void ipi_all_but_self(u_int ipi);
73#ifndef XEN
74void ipi_bitmap_handler(struct trapframe frame);
75#endif
76void ipi_cpu(int cpu, u_int ipi);
77int ipi_nmi_handler(void);

--- 19 unchanged lines hidden ---