Deleted Added
full compact
md_var.h (184101) md_var.h (185341)
1/*-
2 * Copyright (c) 1995 Bruce D. Evans.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
1/*-
2 * Copyright (c) 1995 Bruce D. Evans.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * $FreeBSD: head/sys/amd64/include/md_var.h 184101 2008-10-21 00:17:55Z jkim $
29 * $FreeBSD: head/sys/amd64/include/md_var.h 185341 2008-11-26 19:25:13Z jkim $
30 */
31
32#ifndef _MACHINE_MD_VAR_H_
33#define _MACHINE_MD_VAR_H_
34
35/*
36 * Miscellaneous machine-dependent declarations.
37 */

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

47extern u_int amd_pminfo;
48extern u_int cpu_fxsr;
49extern u_int cpu_high;
50extern u_int cpu_id;
51extern u_int cpu_mxcsr_mask;
52extern u_int cpu_procinfo;
53extern u_int cpu_procinfo2;
54extern char cpu_vendor[];
30 */
31
32#ifndef _MACHINE_MD_VAR_H_
33#define _MACHINE_MD_VAR_H_
34
35/*
36 * Miscellaneous machine-dependent declarations.
37 */

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

47extern u_int amd_pminfo;
48extern u_int cpu_fxsr;
49extern u_int cpu_high;
50extern u_int cpu_id;
51extern u_int cpu_mxcsr_mask;
52extern u_int cpu_procinfo;
53extern u_int cpu_procinfo2;
54extern char cpu_vendor[];
55extern u_int cpu_vendor_id;
55extern char kstack[];
56extern char sigcode[];
57extern int szsigcode;
58extern uint64_t *vm_page_dump;
59extern int vm_page_dump_size;
60
61typedef void alias_for_inthand_t(u_int cs, u_int ef, u_int esp, u_int ss);
62struct thread;

--- 23 unchanged lines hidden ---
56extern char kstack[];
57extern char sigcode[];
58extern int szsigcode;
59extern uint64_t *vm_page_dump;
60extern int vm_page_dump_size;
61
62typedef void alias_for_inthand_t(u_int cs, u_int ef, u_int esp, u_int ss);
63struct thread;

--- 23 unchanged lines hidden ---