2609a6bc98
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39133 a95241bf-73f2-0310-859d-f6bbb57e9c96
25 lines
636 B
C
25 lines
636 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_ARM_VM_TRANSLATION_MAP_H
|
|
#define _KERNEL_ARCH_ARM_VM_TRANSLATION_MAP_H
|
|
|
|
#include <arch/vm_translation_map.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
status_t arm_map_address_range(addr_t virtualAddress, addr_t physicalAddress,
|
|
size_t size);
|
|
void arm_unmap_address_range(addr_t virtualAddress, size_t size);
|
|
status_t arm_remap_address_range(addr_t *virtualAddress, size_t size,
|
|
bool unmap);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _KERNEL_ARCH_ARM_VM_TRANSLATION_MAP_H */
|