2003-06-24 21:22:11 +04:00
|
|
|
/*
|
|
|
|
** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
|
|
|
** Distributed under the terms of the OpenBeOS License.
|
|
|
|
*/
|
|
|
|
#ifndef KERNEL_BOOT_HEAP_H
|
|
|
|
#define KERNEL_BOOT_HEAP_H
|
|
|
|
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
#include <boot/stage2_args.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2003-10-08 02:10:55 +04:00
|
|
|
extern void heap_release(struct stage2_args *args);
|
2003-06-24 21:22:11 +04:00
|
|
|
extern status_t heap_init(struct stage2_args *args);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* KERNEL_BOOT_HEAP_H */
|