Some work-in-progress headers that are needed to build the heap test.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3639 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2003-06-24 17:22:11 +00:00
parent 9fcaa61d04
commit 59eb57ae58
4 changed files with 76 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
/*
** Copyright 2003, Axel Dörfler, [email protected]. 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
extern void heap_release(void);
extern status_t heap_init(struct stage2_args *args);
#ifdef __cplusplus
}
#endif
#endif /* KERNEL_BOOT_HEAP_H */