david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Removed incorrect comment; malloc() is inefficient only when the

alignment and size are both powers of two, and there's no way to
specify an alignment through the malloc() interface anyway.
This commit is contained in:
Michael Brown 2006-04-25 10:41:49 +00:00
parent 4e92f29c9e
commit 95f8a42930
1 changed files with 0 additions and 5 deletions

View File

@ -195,11 +195,6 @@ void free_memblock ( void *ptr, size_t size ) {
*
* Allocates memory with no particular alignment requirement. @c ptr
* will be aligned to at least a multiple of sizeof(void*).
*
* Note that malloc() is very inefficient for allocating blocks where
* the size is a power of two; if you have many of these
* (e.g. descriptor rings, data buffers) you should use malloc_dma()
* instead.
*/
void * malloc ( size_t size ) {
size_t total_size;