diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-15 13:56:49 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-15 13:56:49 +0000 |
commit | e4e83e0395766865b32e31ffd4c99492e95021a9 (patch) | |
tree | 3cdf19cc2481595d362927e4907c24c03ed2cea4 /sys/arch/sparc/include/vmparam.h | |
parent | 52870c9193cefaa9a2f79fab1b0a1e8076290b55 (diff) |
new mapdev/()/mapiodev() calling convention uses "struct rom_reg *" to supply
base plus an offset
new dvma routines
Diffstat (limited to 'sys/arch/sparc/include/vmparam.h')
-rw-r--r-- | sys/arch/sparc/include/vmparam.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/arch/sparc/include/vmparam.h b/sys/arch/sparc/include/vmparam.h index 989f8272933..ef899abd76a 100644 --- a/sys/arch/sparc/include/vmparam.h +++ b/sys/arch/sparc/include/vmparam.h @@ -139,3 +139,9 @@ #define VM_KMEM_SIZE (NKMEMCLUSTERS*CLBYTES) #define MACHINE_NONCONTIG /* VM <=> pmap interface modifier */ + +#if defined (_KERNEL) && !defined(LOCORE) +struct vm_map; +vm_offset_t dvma_mapin __P((struct vm_map *, vm_offset_t, int, int)); +int dvma_mapout __P((vm_offset_t, vm_offset_t, int)); +#endif |