Deleted Added
full compact
smp.h (153141) smp.h (153666)
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 153141 2005-12-05 22:25:41Z jhb $
9 * $FreeBSD: head/sys/i386/include/smp.h 153666 2005-12-22 22:16:09Z jhb $
10 *
11 */
12
13#ifndef _MACHINE_SMP_H_
14#define _MACHINE_SMP_H_
15
16#ifdef _KERNEL
17

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

56/* functions in mp_machdep.c */
57void cpu_add(u_int apic_id, char boot_cpu);
58void cpustop_handler(void);
59void init_secondary(void);
60void ipi_selected(u_int cpus, u_int ipi);
61void ipi_all(u_int ipi);
62void ipi_all_but_self(u_int ipi);
63void ipi_self(u_int ipi);
10 *
11 */
12
13#ifndef _MACHINE_SMP_H_
14#define _MACHINE_SMP_H_
15
16#ifdef _KERNEL
17

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

56/* functions in mp_machdep.c */
57void cpu_add(u_int apic_id, char boot_cpu);
58void cpustop_handler(void);
59void init_secondary(void);
60void ipi_selected(u_int cpus, u_int ipi);
61void ipi_all(u_int ipi);
62void ipi_all_but_self(u_int ipi);
63void ipi_self(u_int ipi);
64void ipi_bitmap_handler(struct clockframe frame);
64void ipi_bitmap_handler(struct trapframe frame);
65u_int mp_bootaddress(u_int);
66int mp_grab_cpu_hlt(void);
67void mp_topology(void);
68void smp_invlpg(vm_offset_t addr);
69void smp_masked_invlpg(u_int mask, vm_offset_t addr);
70void smp_invlpg_range(vm_offset_t startva, vm_offset_t endva);
71void smp_masked_invlpg_range(u_int mask, vm_offset_t startva,
72 vm_offset_t endva);

--- 12 unchanged lines hidden ---
65u_int mp_bootaddress(u_int);
66int mp_grab_cpu_hlt(void);
67void mp_topology(void);
68void smp_invlpg(vm_offset_t addr);
69void smp_masked_invlpg(u_int mask, vm_offset_t addr);
70void smp_invlpg_range(vm_offset_t startva, vm_offset_t endva);
71void smp_masked_invlpg_range(u_int mask, vm_offset_t startva,
72 vm_offset_t endva);

--- 12 unchanged lines hidden ---