xref: /haiku/headers/private/kernel/boot/heap.h (revision 220d04022750f40f8bac8f01fa551211e28d04f2)
1 /*
2 ** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3 ** Distributed under the terms of the OpenBeOS License.
4 */
5 #ifndef KERNEL_BOOT_HEAP_H
6 #define KERNEL_BOOT_HEAP_H
7 
8 #include <SupportDefs.h>
9 #include <boot/stage2_args.h>
10 
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14 
15 extern void heap_release(struct stage2_args *args);
16 extern void heap_print_statistics();
17 extern status_t heap_init(struct stage2_args *args);
18 
19 #ifdef __cplusplus
20 }
21 #endif
22 
23 #endif	/* KERNEL_BOOT_HEAP_H */
24