/* ** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved. ** Distributed under the terms of the OpenBeOS License. */ #include #include #include #include #include "openfirmware.h" status_t platform_allocate_region(void **_address, size_t size, uint8 protection) { void *address = arch_mmu_allocate(*_address, size, protection); if (address == NULL) return B_NO_MEMORY; *_address = address; return B_OK; } status_t platform_free_region(void *address, size_t size) { return arch_mmu_free(address, size); }