Partial build fix. Still a lot to do to catch up with Ingo...

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39189 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol
2010-10-30 01:33:50 +00:00
parent ecb7d9282a
commit c489b073c8
6 changed files with 15 additions and 14 deletions
+5 -5
View File
@@ -5,7 +5,7 @@
#ifndef ARCH_M68K_VM_H
#define ARCH_M68K_VM_H
#include <vm/vm_translation_map.h>
#include <vm/VMTranslationMap.h>
/* This many pages will be read/written on I/O if possible */
@@ -16,9 +16,9 @@
struct m68k_vm_ops {
void *(*m68k_translation_map_get_pgdir)(vm_translation_map *map);
status_t (*arch_vm_translation_map_init_map)(vm_translation_map *map, bool kernel);
status_t (*arch_vm_translation_map_init_kernel_map_post_sem)(vm_translation_map *map);
void *(*m68k_translation_map_get_pgdir)(VMTranslationMap *map);
status_t (*arch_vm_translation_map_init_map)(VMTranslationMap *map, bool kernel);
status_t (*arch_vm_translation_map_init_kernel_map_post_sem)(VMTranslationMap *map);
status_t (*arch_vm_translation_map_init)(kernel_args *args);
status_t (*arch_vm_translation_map_init_post_area)(kernel_args *args);
status_t (*arch_vm_translation_map_init_post_sem)(kernel_args *args);
@@ -42,7 +42,7 @@ extern "C" {
extern struct m68k_vm_ops *get_vm_ops();
extern void *m68k_translation_map_get_pgdir(vm_translation_map *map);
extern void *m68k_translation_map_get_pgdir(VMTranslationMap *map);
extern void m68k_set_pgdir(void *rt);
#ifdef __cplusplus
@@ -11,7 +11,7 @@
extern "C" {
#endif
void m68k_translation_map_change_asid(vm_translation_map *map);
void m68k_translation_map_change_asid(VMTranslationMap *map);
status_t m68k_map_address_range(addr_t virtualAddress,
phys_addr_t physicalAddress, size_t size);