1 #include <gpxe/malloc.h>
14 * Currently fixed at 128kB.
16 #define HEAP_SIZE ( 128 * 1024 )
18 /** The heap itself */
19 char heap
[HEAP_SIZE
] __attribute__ (( aligned ( __alignof__(void *) )));
25 void init_heap ( void ) {
26 mpopulate ( heap
, sizeof ( heap
) );