Deleted Added
full compact
cpu.h (127914) cpu.h (130585)
1/*-
2 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * William Jolitz.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * from: @(#)cpu.h 5.4 (Berkeley) 5/9/91
1/*-
2 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * William Jolitz.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * from: @(#)cpu.h 5.4 (Berkeley) 5/9/91
33 * $FreeBSD: head/sys/amd64/include/cpu.h 127914 2004-04-05 21:29:41Z imp $
33 * $FreeBSD: head/sys/amd64/include/cpu.h 130585 2004-06-16 09:47:26Z phk $
34 */
35
36#ifndef _MACHINE_CPU_H_
37#define _MACHINE_CPU_H_
38
39/*
40 * Definitions unique to i386 cpu support.
41 */

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

60
61#define CLKF_USERMODE(framep) \
62 (ISPL((framep)->cf_cs) == SEL_UPL)
63#define CLKF_PC(framep) ((framep)->cf_rip)
64
65/*
66 * CTL_MACHDEP definitions.
67 */
34 */
35
36#ifndef _MACHINE_CPU_H_
37#define _MACHINE_CPU_H_
38
39/*
40 * Definitions unique to i386 cpu support.
41 */

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

60
61#define CLKF_USERMODE(framep) \
62 (ISPL((framep)->cf_cs) == SEL_UPL)
63#define CLKF_PC(framep) ((framep)->cf_rip)
64
65/*
66 * CTL_MACHDEP definitions.
67 */
68#define CPU_CONSDEV 1 /* dev_t: console terminal device */
68#define CPU_CONSDEV 1 /* struct cdev *: console terminal device */
69#define CPU_ADJKERNTZ 2 /* int: timezone offset (seconds) */
70#define CPU_DISRTCSET 3 /* int: disable resettodr() call */
71#define CPU_WALLCLOCK 5 /* int: indicates wall CMOS clock */
72#define CPU_MAXID 6 /* number of valid machdep ids */
73
74#ifdef _KERNEL
75extern char btext[];
76extern char etext[];

--- 20 unchanged lines hidden ---
69#define CPU_ADJKERNTZ 2 /* int: timezone offset (seconds) */
70#define CPU_DISRTCSET 3 /* int: disable resettodr() call */
71#define CPU_WALLCLOCK 5 /* int: indicates wall CMOS clock */
72#define CPU_MAXID 6 /* number of valid machdep ids */
73
74#ifdef _KERNEL
75extern char btext[];
76extern char etext[];

--- 20 unchanged lines hidden ---