haiku/headers/private/kernel/arch/arm/arch_vm_translation_map.h
Ithamar R. Adema 2609a6bc98 * Fix header guard.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39133 a95241bf-73f2-0310-859d-f6bbb57e9c96
2010-10-24 22:06:22 +00:00

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 */