Updated email mdc's email address
[gpxe.git] / src / core / heap.c
blob4a84fc262753381bdefd51937a54ba2c15c70b8c
1 #include <gpxe/malloc.h>
2 #include <gpxe/heap.h>
4 /**
5 * @file
7 * Heap
9 */
11 /**
12 * Heap size
14 * Currently fixed at 128kB.
16 #define HEAP_SIZE ( 128 * 1024 )
18 /** The heap itself */
19 char heap[HEAP_SIZE] __attribute__ (( aligned ( __alignof__(void *) )));
21 /**
22 * Initialise the heap
25 void init_heap ( void ) {
26 mpopulate ( heap, sizeof ( heap ) );