mirror of
https://github.com/xcat2/xNBA.git
synced 2026-09-12 04:16:21 +00:00
8406115834
Access to the gpxe.org and etherboot.org domains and associated resources has been revoked by the registrant of the domain. Work around this problem by renaming project from gPXE to iPXE, and updating URLs to match. Also update README, LOG and COPYRIGHTS to remove obsolete information. Signed-off-by: Michael Brown <mcb30@ipxe.org>
27 lines
486 B
C
27 lines
486 B
C
#include <stdio.h>
|
|
#include <ipxe/uaccess.h>
|
|
#include <ipxe/umalloc.h>
|
|
#include <ipxe/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 );
|
|
}
|