Deleted Added
full compact
md_var.h (31321) md_var.h (32517)
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.19 1997/10/27 17:23:04 bde Exp $
29 * $Id: md_var.h,v 1.20 1997/11/20 19:30:34 bde Exp $
30 */
31
32#ifndef _MACHINE_MD_VAR_H_
33#define _MACHINE_MD_VAR_H_
34
35/*
36 * Miscellaneous machine-dependent declarations.
37 */

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

50extern char kstack[];
51#ifdef BOUNCE_BUFFERS
52extern int maxbkva;
53#endif
54extern void (*netisrs[32]) __P((void));
55extern int nfs_diskless_valid;
56extern char sigcode[];
57extern int szsigcode;
30 */
31
32#ifndef _MACHINE_MD_VAR_H_
33#define _MACHINE_MD_VAR_H_
34
35/*
36 * Miscellaneous machine-dependent declarations.
37 */

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

50extern char kstack[];
51#ifdef BOUNCE_BUFFERS
52extern int maxbkva;
53#endif
54extern void (*netisrs[32]) __P((void));
55extern int nfs_diskless_valid;
56extern char sigcode[];
57extern int szsigcode;
58extern int busdma_swi_pending;
58
59typedef void alias_for_inthand_t __P((u_int cs, u_int ef, u_int esp, u_int ss));
60struct proc;
61struct reg;
62
63void bcopyb __P((const void *from, void *to, size_t len));
64void cpu_reset __P((void));
65void cpu_halt __P((void));

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

76void fillw __P((int /*u_short*/ pat, void *base, size_t cnt));
77int is_physical_memory __P((vm_offset_t addr));
78u_long kvtop __P((void *addr));
79void setidt __P((int idx, alias_for_inthand_t *func, int typ, int dpl,
80 int selec));
81void userconfig __P((void));
82void vm_bounce_init __P((void));
83int vm_page_zero_idle __P((void));
59
60typedef void alias_for_inthand_t __P((u_int cs, u_int ef, u_int esp, u_int ss));
61struct proc;
62struct reg;
63
64void bcopyb __P((const void *from, void *to, size_t len));
65void cpu_reset __P((void));
66void cpu_halt __P((void));

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

77void fillw __P((int /*u_short*/ pat, void *base, size_t cnt));
78int is_physical_memory __P((vm_offset_t addr));
79u_long kvtop __P((void *addr));
80void setidt __P((int idx, alias_for_inthand_t *func, int typ, int dpl,
81 int selec));
82void userconfig __P((void));
83void vm_bounce_init __P((void));
84int vm_page_zero_idle __P((void));
85void busdma_swi __P((void));
84
85#ifdef PC98
86extern int need_pre_dma_flush;
87extern int need_post_dma_flush;
88#endif
89
90#endif /* !_MACHINE_MD_VAR_H_ */
86
87#ifdef PC98
88extern int need_pre_dma_flush;
89extern int need_post_dma_flush;
90#endif
91
92#endif /* !_MACHINE_MD_VAR_H_ */