md_var.h (3f7773458e0e124bcbf6b06a23a4e5e027a000c3) | md_var.h (48a09cf2760da35e089ae3e2d56578b730fc7047) |
---|---|
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.14 1997/06/07 04:36:05 bde Exp $ | 29 * $Id: md_var.h,v 1.15 1997/06/15 02:02:55 wollman 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 fusword __P((void *base)); | |
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_ */ | 71u_long kvtop __P((void *addr)); 72void setidt __P((int idx, alias_for_inthand_t *func, int typ, int dpl, 73 int selec)); 74void userconfig __P((void)); 75void vm_bounce_init __P((void)); 76int vm_page_zero_idle __P((void)); 77 78#ifdef PC98 79extern int need_pre_dma_flush; 80extern int need_post_dma_flush; 81#endif 82 83#endif /* !_MACHINE_MD_VAR_H_ */ |