mirror of
https://review.haiku-os.org/haiku
synced 2025-01-30 18:24:53 +01:00
78dde7abd7
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37011 a95241bf-73f2-0310-859d-f6bbb57e9c96
18 lines
513 B
C
18 lines
513 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_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
|
|
uint32 i386_translation_map_get_pgdir(VMTranslationMap *map);
|
|
|
|
#endif /* _KERNEL_ARCH_x86_VM_TRANSLATION_MAP_H */
|