Deleted Added
full compact
smp.h (112687) smp.h (112993)
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 112687 2003-03-26 19:49:34Z ps $
9 * $FreeBSD: head/sys/amd64/include/smp.h 112993 2003-04-02 23:53:30Z peter $
10 *
11 */
12
13#ifndef _MACHINE_SMP_H_
14#define _MACHINE_SMP_H_
15
16#ifdef _KERNEL
17

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

51#include <i386/isa/intr_machdep.h>
52
53/*
54 * Interprocessor interrupts for SMP.
55 */
56#define IPI_INVLTLB XINVLTLB_OFFSET
57#define IPI_INVLPG XINVLPG_OFFSET
58#define IPI_INVLRNG XINVLRNG_OFFSET
10 *
11 */
12
13#ifndef _MACHINE_SMP_H_
14#define _MACHINE_SMP_H_
15
16#ifdef _KERNEL
17

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

51#include <i386/isa/intr_machdep.h>
52
53/*
54 * Interprocessor interrupts for SMP.
55 */
56#define IPI_INVLTLB XINVLTLB_OFFSET
57#define IPI_INVLPG XINVLPG_OFFSET
58#define IPI_INVLRNG XINVLRNG_OFFSET
59#define IPI_LAZYPMAP XLAZYPMAP_OFFSET
59#define IPI_RENDEZVOUS XRENDEZVOUS_OFFSET
60#define IPI_AST XCPUAST_OFFSET
61#define IPI_STOP XCPUSTOP_OFFSET
62#define IPI_HARDCLOCK XHARDCLOCK_OFFSET
63#define IPI_STATCLOCK XSTATCLOCK_OFFSET
64
65/* global data in mpboot.s */
66extern int bootMP_size;

--- 95 unchanged lines hidden ---
60#define IPI_RENDEZVOUS XRENDEZVOUS_OFFSET
61#define IPI_AST XCPUAST_OFFSET
62#define IPI_STOP XCPUSTOP_OFFSET
63#define IPI_HARDCLOCK XHARDCLOCK_OFFSET
64#define IPI_STATCLOCK XSTATCLOCK_OFFSET
65
66/* global data in mpboot.s */
67extern int bootMP_size;

--- 95 unchanged lines hidden ---