* Refactored arch_vm_translation_map_init_post_area() a bit: Pulled out

remapping stuff into separate functions and made them available to
  others.
* Remap the exception handler space in arch_int_init_post_vm() into the
  kernel address space (same issue as with the page table).


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15783 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2006-01-02 03:30:58 +00:00
parent 835fb10b16
commit c8cd524c67
3 changed files with 112 additions and 44 deletions
@@ -8,8 +8,19 @@
#include <arch/vm_translation_map.h>
#ifdef __cplusplus
extern "C"
extern "C" {
#endif
void ppc_translation_map_change_asid(vm_translation_map *map);
status_t ppc_map_address_range(addr_t virtualAddress, addr_t physicalAddress,
size_t size);
void ppc_unmap_address_range(addr_t virtualAddress, size_t size);
status_t ppc_remap_address_range(addr_t *virtualAddress, size_t size,
bool unmap);
#ifdef __cplusplus
}
#endif
#endif /* _KERNEL_ARCH_PPC_VM_TRANSLATION_MAP_H */