2000-05-28 13:40:48 +00:00
|
|
|
/*
|
|
|
|
* _heap.h
|
|
|
|
*
|
|
|
|
* Ullrich von Bassewitz, 03.06.1998
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __HEAP_H
|
|
|
|
#define __HEAP_H
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Space needed for administering used blocks */
|
|
|
|
#define HEAP_ADMIN_SPACE sizeof (unsigned)
|
|
|
|
|
2003-02-01 12:22:09 +00:00
|
|
|
/* The data type used to implement the free list.
|
2000-05-28 13:40:48 +00:00
|
|
|
* Beware: Field order is significant!
|
|
|
|
*/
|
|
|
|
struct freeblock {
|
|
|
|
unsigned size;
|
|
|
|
struct freeblock* next;
|
|
|
|
struct freeblock* prev;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Variables that describe the heap */
|
2003-02-01 12:22:09 +00:00
|
|
|
extern unsigned* _heaporg; /* Bottom of heap */
|
|
|
|
extern unsigned* _heapptr; /* Current top */
|
|
|
|
extern unsigned* _heapend; /* Upper limit */
|
|
|
|
extern struct freeblock* _heapfirst; /* First free block in list */
|
|
|
|
extern struct freeblock* _heaplast; /* Last free block in list */
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* End of _heap.h */
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|