147133b76c
where appropriate. * Typedef'ed page_num_t to phys_addr_t and used it in more places in vm_page.{h,cpp}. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36937 a95241bf-73f2-0310-859d-f6bbb57e9c96
27 lines
712 B
C
27 lines
712 B
C
/*
|
|
** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
|
** Distributed under the terms of the OpenBeOS License.
|
|
*/
|
|
#ifndef _KERNEL_ARCH_M68K_VM_TRANSLATION_MAP_H
|
|
#define _KERNEL_ARCH_M68K_VM_TRANSLATION_MAP_H
|
|
|
|
#include <arch/vm_translation_map.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void m68k_translation_map_change_asid(vm_translation_map *map);
|
|
|
|
status_t m68k_map_address_range(addr_t virtualAddress,
|
|
phys_addr_t physicalAddress, size_t size);
|
|
void m68k_unmap_address_range(addr_t virtualAddress, size_t size);
|
|
status_t m68k_remap_address_range(addr_t *virtualAddress, size_t size,
|
|
bool unmap);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _KERNEL_ARCH_M68K_VM_TRANSLATION_MAP_H */
|