Files
haiku-beta6/headers/private/kernel/memheap.h
T

20 lines
398 B
C
Raw Normal View History

/*
2002-07-09 12:24:59 +00:00
** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
** Distributed under the terms of the NewOS License.
*/
#ifndef _KERNEL_MEMHEAP_H
#define _KERNEL_MEMHEAP_H
#include <kernel.h>
struct kernel_args;
2002-07-09 12:24:59 +00:00
#define HEAP_SIZE 0x00400000
2002-08-05 17:22:19 +00:00
// 4 MB heap for the kernel
int heap_init(addr new_heap_base);
int heap_init_postsem(struct kernel_args *ka);
2002-07-09 12:24:59 +00:00
#endif /* _KERNEL_MEMHEAP_H */