Deleted Added
full compact
md_var.h (199253) md_var.h (204907)
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 199253 2009-11-13 13:07:01Z kib $
29 * $FreeBSD: head/sys/amd64/include/md_var.h 204907 2010-03-09 03:30:31Z alc $
30 */
31
32#ifndef _MACHINE_MD_VAR_H_
33#define _MACHINE_MD_VAR_H_
34
35/*
36 * Miscellaneous machine-dependent declarations.
37 */

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

56extern u_int cpu_procinfo2;
57extern char cpu_vendor[];
58extern u_int cpu_vendor_id;
59extern char kstack[];
60extern char sigcode[];
61extern int szsigcode;
62extern uint64_t *vm_page_dump;
63extern int vm_page_dump_size;
30 */
31
32#ifndef _MACHINE_MD_VAR_H_
33#define _MACHINE_MD_VAR_H_
34
35/*
36 * Miscellaneous machine-dependent declarations.
37 */

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

56extern u_int cpu_procinfo2;
57extern char cpu_vendor[];
58extern u_int cpu_vendor_id;
59extern char kstack[];
60extern char sigcode[];
61extern int szsigcode;
62extern uint64_t *vm_page_dump;
63extern int vm_page_dump_size;
64extern int workaround_erratum383;
64extern int _udatasel;
65extern int _ucodesel;
66extern int _ucode32sel;
67extern int _ufssel;
68extern int _ugssel;
69
70typedef void alias_for_inthand_t(u_int cs, u_int ef, u_int esp, u_int ss);
71struct thread;

--- 32 unchanged lines hidden ---
65extern int _udatasel;
66extern int _ucodesel;
67extern int _ucode32sel;
68extern int _ufssel;
69extern int _ugssel;
70
71typedef void alias_for_inthand_t(u_int cs, u_int ef, u_int esp, u_int ss);
72struct thread;

--- 32 unchanged lines hidden ---