Changes for the ELF loader in the boot loader.

Removed the arch_mmu_alloc() function, added (empty) arch_mmu_free() function.
Added platform prototypes for allocating and freeing a region.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5044 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2003-10-16 17:55:21 +00:00
parent e44d4929ce
commit b73b3e5a2d
4 changed files with 31 additions and 2 deletions
@@ -13,8 +13,8 @@
extern "C" {
#endif
extern void *arch_mmu_alloc_at(void *address, size_t size, uint8 protection);
extern void *arch_mmu_alloc(size_t size, uint8 protection);
extern void *arch_mmu_allocate(void *address, size_t size, uint8 protection);
extern status_t arch_mmu_free(void *address, size_t size);
extern status_t arch_mmu_init(void);
#ifdef __cplusplus