mirror of
https://review.haiku-os.org/haiku
synced 2025-01-24 23:34:53 +01:00
28 lines
624 B
C
28 lines
624 B
C
|
/*
|
||
|
* Copyright 2009 Haiku Inc.
|
||
|
* All rights reserved. Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef _KERNEL_ARCH_MIPSEL_VM_TRANSLATION_MAP_H
|
||
|
#define _KERNEL_ARCH_MIPSEL_VM_TRANSLATION_MAP_H
|
||
|
|
||
|
#include <arch/vm_translation_map.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
status_t mipsel_map_address_range(addr_t virtualAddress, addr_t physicalAddress,
|
||
|
size_t size);
|
||
|
|
||
|
void mipsel_unmap_address_range(addr_t virtualAddress, size_t size);
|
||
|
|
||
|
status_t mipsel_remap_address_range(addr_t *virtualAddress, size_t size,
|
||
|
bool unmap);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* _KERNEL_ARCH_MIPSEL_VM_TRANSLATION_MAP_H */
|
||
|
|