2003-10-17 17:35:12 +04:00
|
|
|
/*
|
|
|
|
** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
|
|
|
** Distributed under the terms of the OpenBeOS License.
|
|
|
|
*/
|
|
|
|
#ifndef _KERNEL_ARCH_x86_VM_TRANSLATION_MAP_H
|
|
|
|
#define _KERNEL_ARCH_x86_VM_TRANSLATION_MAP_H
|
|
|
|
|
|
|
|
#include <arch/vm_translation_map.h>
|
|
|
|
|
|
|
|
|
|
|
|
// quick function to return the physical pgdir of a mapping, needed for a context switch
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
#endif
|
2010-01-14 06:26:12 +03:00
|
|
|
void *i386_translation_map_get_pgdir(VMTranslationMap *map);
|
2003-10-17 17:35:12 +04:00
|
|
|
|
|
|
|
#endif /* _KERNEL_ARCH_x86_VM_TRANSLATION_MAP_H */
|