Deleted Added
full compact
md_var.h (102600) md_var.h (105950)
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 102600 2002-08-30 04:04:37Z peter $
29 * $FreeBSD: head/sys/amd64/include/md_var.h 105950 2002-10-25 19:10:58Z peter $
30 */
31
32#ifndef _MACHINE_MD_VAR_H_
33#define _MACHINE_MD_VAR_H_
34
35/*
36 * Miscellaneous machine-dependent declarations.
37 */

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

51extern uint16_t *elan_mmcr;
52extern char kstack[];
53#ifdef PC98
54extern int need_pre_dma_flush;
55extern int need_post_dma_flush;
56#endif
57extern void (*ovbcopy_vector)(const void *from, void *to, size_t len);
58extern char sigcode[];
30 */
31
32#ifndef _MACHINE_MD_VAR_H_
33#define _MACHINE_MD_VAR_H_
34
35/*
36 * Miscellaneous machine-dependent declarations.
37 */

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

51extern uint16_t *elan_mmcr;
52extern char kstack[];
53#ifdef PC98
54extern int need_pre_dma_flush;
55extern int need_post_dma_flush;
56#endif
57extern void (*ovbcopy_vector)(const void *from, void *to, size_t len);
58extern char sigcode[];
59extern int szsigcode, szosigcode;
59extern int szsigcode;
60#ifdef COMPAT_FREEBSD4
61extern int szfreebsd4_sigcode;
62#endif
63#ifdef COMPAT_43
64extern int szosigcode;
65#endif
60
61typedef void alias_for_inthand_t(u_int cs, u_int ef, u_int esp, u_int ss);
62struct thread;
63struct reg;
64struct fpreg;
65struct dbreg;
66
67void bcopyb(const void *from, void *to, size_t len);

--- 28 unchanged lines hidden ---
66
67typedef void alias_for_inthand_t(u_int cs, u_int ef, u_int esp, u_int ss);
68struct thread;
69struct reg;
70struct fpreg;
71struct dbreg;
72
73void bcopyb(const void *from, void *to, size_t len);

--- 28 unchanged lines hidden ---