Deleted Added
full compact
smp.h (235683) smp.h (236938)
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/i386/include/smp.h 235683 2012-05-20 08:17:20Z iwasaki $
9 * $FreeBSD: head/sys/i386/include/smp.h 236938 2012-06-12 00:14:54Z iwasaki $
10 *
11 */
12
13#ifndef _MACHINE_SMP_H_
14#define _MACHINE_SMP_H_
15
16#ifdef _KERNEL
17

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

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 init_secondary(void);
10 *
11 */
12
13#ifndef _MACHINE_SMP_H_
14#define _MACHINE_SMP_H_
15
16#ifdef _KERNEL
17

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

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 init_secondary(void);
67void ipi_startup(int apic_id, int vector);
67void ipi_all_but_self(u_int ipi);
68#ifndef XEN
69void ipi_bitmap_handler(struct trapframe frame);
70#endif
71void ipi_cpu(int cpu, u_int ipi);
72int ipi_nmi_handler(void);
73void ipi_selected(cpuset_t cpus, u_int ipi);
74u_int mp_bootaddress(u_int);

--- 22 unchanged lines hidden ---
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);
74void ipi_selected(cpuset_t cpus, u_int ipi);
75u_int mp_bootaddress(u_int);

--- 22 unchanged lines hidden ---