md_var.h (e0b78e19f250fb4b0ffa8a7b1b01cd54f816dab4) | md_var.h (cae6f73ac212ea2aa66f3f157aa23f3367346492) |
---|---|
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.16 1997/08/09 00:03:14 dyson Exp $ | 29 * $Id: md_var.h,v 1.17 1997/09/10 12:31:36 joerg Exp $ |
30 */ 31 32#ifndef _MACHINE_MD_VAR_H_ 33#define _MACHINE_MD_VAR_H_ 34 35/* 36 * Miscellaneous machine-dependent declarations. 37 */ --- 25 unchanged lines hidden (view full) --- 63void doreti_iret __P((void)) __asm(__STRING(doreti_iret)); 64void doreti_iret_fault __P((void)) __asm(__STRING(doreti_iret_fault)); 65void doreti_popl_ds __P((void)) __asm(__STRING(doreti_popl_ds)); 66void doreti_popl_ds_fault __P((void)) __asm(__STRING(doreti_popl_ds_fault)); 67void doreti_popl_es __P((void)) __asm(__STRING(doreti_popl_es)); 68void doreti_popl_es_fault __P((void)) __asm(__STRING(doreti_popl_es_fault)); 69int fill_regs __P((struct proc *p, struct reg *regs)); 70void fillw __P((int /*u_short*/ pat, void *base, size_t cnt)); | 30 */ 31 32#ifndef _MACHINE_MD_VAR_H_ 33#define _MACHINE_MD_VAR_H_ 34 35/* 36 * Miscellaneous machine-dependent declarations. 37 */ --- 25 unchanged lines hidden (view full) --- 63void doreti_iret __P((void)) __asm(__STRING(doreti_iret)); 64void doreti_iret_fault __P((void)) __asm(__STRING(doreti_iret_fault)); 65void doreti_popl_ds __P((void)) __asm(__STRING(doreti_popl_ds)); 66void doreti_popl_ds_fault __P((void)) __asm(__STRING(doreti_popl_ds_fault)); 67void doreti_popl_es __P((void)) __asm(__STRING(doreti_popl_es)); 68void doreti_popl_es_fault __P((void)) __asm(__STRING(doreti_popl_es_fault)); 69int fill_regs __P((struct proc *p, struct reg *regs)); 70void fillw __P((int /*u_short*/ pat, void *base, size_t cnt)); |
71int is_adapter_memory __P((vm_offset_t addr)); | 71int is_physical_memory __P((vm_offset_t addr)); |
72u_long kvtop __P((void *addr)); 73void setidt __P((int idx, alias_for_inthand_t *func, int typ, int dpl, 74 int selec)); 75void userconfig __P((void)); 76void vm_bounce_init __P((void)); 77int vm_page_zero_idle __P((void)); 78 79#ifdef PC98 80extern int need_pre_dma_flush; 81extern int need_post_dma_flush; 82#endif 83 84#endif /* !_MACHINE_MD_VAR_H_ */ | 72u_long kvtop __P((void *addr)); 73void setidt __P((int idx, alias_for_inthand_t *func, int typ, int dpl, 74 int selec)); 75void userconfig __P((void)); 76void vm_bounce_init __P((void)); 77int vm_page_zero_idle __P((void)); 78 79#ifdef PC98 80extern int need_pre_dma_flush; 81extern int need_post_dma_flush; 82#endif 83 84#endif /* !_MACHINE_MD_VAR_H_ */ |