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/amd64/include/smp.h 255217 2013-09-04 23:31:29Z kib $
9 * $FreeBSD: stable/10/sys/amd64/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

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

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

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

57 IDTVEC(rendezvous); /* handle CPU rendezvous */
58
59struct pmap;
60
61/* functions in mp_machdep.c */
62void cpu_add(u_int apic_id, char boot_cpu);
63void cpustop_handler(void);
64void cpususpend_handler(void);
65void invltlb_handler(void);
66void invltlb_pcid_handler(void);
67void invlpg_handler(void);
68void invlpg_pcid_handler(void);
69void invlrng_handler(void);
70void invlcache_handler(void);
65void init_secondary(void);
66void ipi_startup(int apic_id, int vector);
67void ipi_all_but_self(u_int ipi);
68void ipi_bitmap_handler(struct trapframe frame);
69void ipi_cpu(int cpu, u_int ipi);
70int ipi_nmi_handler(void);
71void ipi_selected(cpuset_t cpus, u_int ipi);
72u_int mp_bootaddress(u_int);

--- 15 unchanged lines hidden ---
71void init_secondary(void);
72void ipi_startup(int apic_id, int vector);
73void ipi_all_but_self(u_int ipi);
74void ipi_bitmap_handler(struct trapframe frame);
75void ipi_cpu(int cpu, u_int ipi);
76int ipi_nmi_handler(void);
77void ipi_selected(cpuset_t cpus, u_int ipi);
78u_int mp_bootaddress(u_int);

--- 15 unchanged lines hidden ---