mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
e55a4bcfd4
git-svn-id: svn://svn.cc65.org/cc65/trunk@3340 b7a2c559-68d2-44c3-8de9-860c34a00d81
54 lines
1.1 KiB
C
54 lines
1.1 KiB
C
/*
|
|
* _heap.h
|
|
*
|
|
* Ullrich von Bassewitz, 1998-06-03, 2004-12-19
|
|
*
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __HEAP_H
|
|
#define __HEAP_H
|
|
|
|
|
|
|
|
/* Structure that preceeds a user block in most cases.
|
|
* The aligned_malloc function may generate blocks where the start pointer
|
|
* and size are splitted to handle a memory hole that is needed for
|
|
* alignment.
|
|
*/
|
|
struct usedblock {
|
|
unsigned size;
|
|
struct usedblock* start;
|
|
};
|
|
|
|
/* Space needed for administering used blocks */
|
|
#define HEAP_ADMIN_SPACE sizeof (struct usedblock)
|
|
|
|
/* The data type used to implement the free list.
|
|
* Beware: Field order is significant!
|
|
*/
|
|
struct freeblock {
|
|
unsigned size;
|
|
struct freeblock* next;
|
|
struct freeblock* prev;
|
|
};
|
|
|
|
|
|
|
|
/* Variables that describe the heap */
|
|
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 */
|
|
|
|
|
|
|
|
/* End of _heap.h */
|
|
|
|
#endif
|
|
|
|
|
|
|