Deleted Added
full compact
x86_var.h (39648) x86_var.h (40751)
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.25 1998/09/14 22:43:40 jdp Exp $
29 * $Id: md_var.h,v 1.26 1998/09/25 17:34:49 peter Exp $
30 */
31
32#ifndef _MACHINE_MD_VAR_H_
33#define _MACHINE_MD_VAR_H_
34
35/*
36 * Miscellaneous machine-dependent declarations.
37 */

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

57typedef void alias_for_inthand_t __P((u_int cs, u_int ef, u_int esp, u_int ss));
58struct proc;
59struct reg;
60struct fpreg;
61
62void bcopyb __P((const void *from, void *to, size_t len));
63void busdma_swi __P((void));
64void 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 */

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

57typedef void alias_for_inthand_t __P((u_int cs, u_int ef, u_int esp, u_int ss));
58struct proc;
59struct reg;
60struct fpreg;
61
62void bcopyb __P((const void *from, void *to, size_t len));
63void busdma_swi __P((void));
64void cpu_halt __P((void));
65void cpu_power_down __P((void));
66void cpu_reset __P((void));
67void cpu_switch_load_fs __P((void)) __asm(__STRING(cpu_switch_load_fs));
68void cpu_switch_load_gs __P((void)) __asm(__STRING(cpu_switch_load_gs));
69void doreti_iret __P((void)) __asm(__STRING(doreti_iret));
70void doreti_iret_fault __P((void)) __asm(__STRING(doreti_iret_fault));
71void doreti_popl_ds __P((void)) __asm(__STRING(doreti_popl_ds));
72void doreti_popl_ds_fault __P((void)) __asm(__STRING(doreti_popl_ds_fault));
73void doreti_popl_es __P((void)) __asm(__STRING(doreti_popl_es));

--- 13 unchanged lines hidden ---
65void cpu_reset __P((void));
66void cpu_switch_load_fs __P((void)) __asm(__STRING(cpu_switch_load_fs));
67void cpu_switch_load_gs __P((void)) __asm(__STRING(cpu_switch_load_gs));
68void doreti_iret __P((void)) __asm(__STRING(doreti_iret));
69void doreti_iret_fault __P((void)) __asm(__STRING(doreti_iret_fault));
70void doreti_popl_ds __P((void)) __asm(__STRING(doreti_popl_ds));
71void doreti_popl_ds_fault __P((void)) __asm(__STRING(doreti_popl_ds_fault));
72void doreti_popl_es __P((void)) __asm(__STRING(doreti_popl_es));

--- 13 unchanged lines hidden ---