haiku/headers/private/kernel/boot/heap.h
Axel Dörfler 662cc71f2c heap size is now part of stage2_args.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4961 a95241bf-73f2-0310-859d-f6bbb57e9c96
2003-10-07 22:10:55 +00:00

23 lines
459 B
C

/*
** 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
extern void heap_release(struct stage2_args *args);
extern status_t heap_init(struct stage2_args *args);
#ifdef __cplusplus
}
#endif
#endif /* KERNEL_BOOT_HEAP_H */