Rename e{malloc,realloc,free} to u{malloc,realloc,free}, to more obviously

reflect the fact that they allocate and deallocate user memory (i.e.
things reached through a userptr_t).
This commit is contained in:
Michael Brown
2007-01-16 08:36:42 +00:00
parent ff8528ea9a
commit 544fa25928
8 changed files with 42 additions and 43 deletions

View File

@@ -21,7 +21,7 @@
#include <errno.h>
#include <vsprintf.h>
#include <gpxe/image.h>
#include <gpxe/emalloc.h>
#include <gpxe/umalloc.h>
#include <usr/fetch.h>
#include <usr/imgmgmt.h>
@@ -66,7 +66,7 @@ int imgfetch ( const char *filename, const char *name,
return 0;
err:
efree ( image->data );
ufree ( image->data );
free ( image );
return rc;
}
@@ -139,6 +139,6 @@ void imgstat ( struct image *image ) {
*/
void imgfree ( struct image *image ) {
unregister_image ( image );
efree ( image->data );
ufree ( image->data );
free ( image );
}