Deleted Added
full compact
md_var.h (83366) md_var.h (83651)
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 83366 2001-09-12 08:38:13Z julian $
29 * $FreeBSD: head/sys/amd64/include/md_var.h 83651 2001-09-18 23:32:09Z peter $
30 */
31
32#ifndef _MACHINE_MD_VAR_H_
33#define _MACHINE_MD_VAR_H_
34
35/*
36 * Miscellaneous machine-dependent declarations.
37 */

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

50extern u_int cpu_fxsr;
51extern char cpu_vendor[];
52extern u_int cyrix_did;
53extern char kstack[];
54#ifdef PC98
55extern int need_pre_dma_flush;
56extern int need_post_dma_flush;
57#endif
30 */
31
32#ifndef _MACHINE_MD_VAR_H_
33#define _MACHINE_MD_VAR_H_
34
35/*
36 * Miscellaneous machine-dependent declarations.
37 */

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

50extern u_int cpu_fxsr;
51extern char cpu_vendor[];
52extern u_int cyrix_did;
53extern char kstack[];
54#ifdef PC98
55extern int need_pre_dma_flush;
56extern int need_post_dma_flush;
57#endif
58extern int nfs_diskless_valid;
59extern void (*ovbcopy_vector) __P((const void *from, void *to, size_t len));
60extern char sigcode[];
61extern int szsigcode, szosigcode;
62
63typedef void alias_for_inthand_t __P((u_int cs, u_int ef, u_int esp, u_int ss));
64struct thread;
65struct reg;
66struct fpreg;

--- 35 unchanged lines hidden ---
58extern void (*ovbcopy_vector) __P((const void *from, void *to, size_t len));
59extern char sigcode[];
60extern int szsigcode, szosigcode;
61
62typedef void alias_for_inthand_t __P((u_int cs, u_int ef, u_int esp, u_int ss));
63struct thread;
64struct reg;
65struct fpreg;

--- 35 unchanged lines hidden ---