mirror of
https://github.com/xcat2/xNBA.git
synced 2025-05-21 19:02:04 +00:00
27 lines
486 B
C
27 lines
486 B
C
#include <stdio.h>
|
|
#include <gpxe/uaccess.h>
|
|
#include <gpxe/umalloc.h>
|
|
#include <gpxe/memmap.h>
|
|
|
|
void umalloc_test ( void ) {
|
|
struct memory_map memmap;
|
|
userptr_t bob;
|
|
userptr_t fred;
|
|
|
|
printf ( "Before allocation:\n" );
|
|
get_memmap ( &memmap );
|
|
|
|
bob = umalloc ( 1234 );
|
|
bob = urealloc ( bob, 12345 );
|
|
fred = umalloc ( 999 );
|
|
|
|
printf ( "After allocation:\n" );
|
|
get_memmap ( &memmap );
|
|
|
|
ufree ( bob );
|
|
ufree ( fred );
|
|
|
|
printf ( "After freeing:\n" );
|
|
get_memmap ( &memmap );
|
|
}
|