blob: e8428f5d5c5300872cf18e4ec40b3c0aa81aff5b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#include <vsprintf.h>
#include <gpxe/uaccess.h>
#include <gpxe/emalloc.h>
#include <gpxe/memmap.h>
void emalloc_test ( void ) {
struct memory_map memmap;
userptr_t bob;
userptr_t fred;
printf ( "Before allocation:\n" );
get_memmap ( &memmap );
bob = emalloc ( 1234 );
bob = erealloc ( bob, 12345 );
fred = emalloc ( 999 );
printf ( "After allocation:\n" );
get_memmap ( &memmap );
efree ( bob );
efree ( fred );
printf ( "After freeing:\n" );
get_memmap ( &memmap );
}
|