Deleted Added
full compact
md_var.h (24112) md_var.h (26494)
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 * $Id: md_var.h,v 1.12 1997/02/22 09:34:49 peter Exp $
29 * $Id: md_var.h,v 1.13 1997/03/22 18:53:08 kato Exp $
30 */
31
32#ifndef _MACHINE_MD_VAR_H_
33#define _MACHINE_MD_VAR_H_
34
35/*
36 * Miscellaneous machine-dependent declarations.
37 */

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

52
53typedef void alias_for_inthand_t __P((u_int cs, u_int ef, u_int esp, u_int ss));
54struct proc;
55struct reg;
56
57void bcopyb __P((const void *from, void *to, size_t len));
58void cpu_reset __P((void));
59void cpu_halt __P((void));
30 */
31
32#ifndef _MACHINE_MD_VAR_H_
33#define _MACHINE_MD_VAR_H_
34
35/*
36 * Miscellaneous machine-dependent declarations.
37 */

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

52
53typedef void alias_for_inthand_t __P((u_int cs, u_int ef, u_int esp, u_int ss));
54struct proc;
55struct reg;
56
57void bcopyb __P((const void *from, void *to, size_t len));
58void cpu_reset __P((void));
59void cpu_halt __P((void));
60void cpu_switch_load_fs __P((void)) __asm(__STRING(cpu_switch_load_fs));
61void cpu_switch_load_gs __P((void)) __asm(__STRING(cpu_switch_load_gs));
60void doreti_iret __P((void)) __asm(__STRING(doreti_iret));
61void doreti_iret_fault __P((void)) __asm(__STRING(doreti_iret_fault));
62void doreti_popl_ds __P((void)) __asm(__STRING(doreti_popl_ds));
63void doreti_popl_ds_fault __P((void)) __asm(__STRING(doreti_popl_ds_fault));
64void doreti_popl_es __P((void)) __asm(__STRING(doreti_popl_es));
65void doreti_popl_es_fault __P((void)) __asm(__STRING(doreti_popl_es_fault));
66int fill_regs __P((struct proc *p, struct reg *regs));
67void fillw __P((int /*u_short*/ pat, void *base, size_t cnt));

--- 14 unchanged lines hidden ---
62void doreti_iret __P((void)) __asm(__STRING(doreti_iret));
63void doreti_iret_fault __P((void)) __asm(__STRING(doreti_iret_fault));
64void doreti_popl_ds __P((void)) __asm(__STRING(doreti_popl_ds));
65void doreti_popl_ds_fault __P((void)) __asm(__STRING(doreti_popl_ds_fault));
66void doreti_popl_es __P((void)) __asm(__STRING(doreti_popl_es));
67void doreti_popl_es_fault __P((void)) __asm(__STRING(doreti_popl_es_fault));
68int fill_regs __P((struct proc *p, struct reg *regs));
69void fillw __P((int /*u_short*/ pat, void *base, size_t cnt));

--- 14 unchanged lines hidden ---