The Pedigree Project
0.1
|
#include "lwip/opt.h"
Go to the source code of this file.
Macros | |
#define | MEM_SIZE_F U16_F |
Typedefs | |
typedef u16_t | mem_size_t |
Functions | |
void | mem_init (void) |
void * | mem_trim (void *mem, mem_size_t size) |
void * | mem_malloc (mem_size_t size) |
void * | mem_calloc (mem_size_t count, mem_size_t size) |
void | mem_free (void *mem) |
Heap API
Definition in file mem.h.
void* mem_calloc | ( | mem_size_t | count, |
mem_size_t | size | ||
) |
Contiguously allocates enough space for count objects that are size bytes of memory each and returns a pointer to the allocated memory.
The allocated memory is filled with bytes of value zero.
count | number of objects to allocate |
size | size of the objects to allocate |
Definition at line 784 of file mem.c.
References mem_malloc().
Referenced by mem_malloc().
void mem_free | ( | void * | rmem | ) |
Put a struct mem back on the heap
rmem | is the data portion of a struct mem as returned by a previous call to mem_malloc() |
Definition at line 438 of file mem.c.
References LWIP_DBG_LEVEL_SERIOUS, LWIP_DBG_LEVEL_SEVERE, LWIP_DBG_TRACE, LWIP_DEBUGF, MEM_DEBUG, mem::next, SYS_ARCH_DECL_PROTECT, and mem::used.
Referenced by mem_free_callback(), memp_malloc(), pbuf_free(), and slipif_init().
void mem_init | ( | void | ) |
Zero the heap and initialize start, end and lowest-free
Definition at line 401 of file mem.c.
References ERR_OK, LWIP_MEM_ALIGN, mem::next, mem::prev, sys_mutex_new(), and mem::used.
Referenced by lwip_init().
void* mem_malloc | ( | mem_size_t | size | ) |
Allocate a block of memory with a minimum of 'size' bytes.
size | is the minimum size of the requested block in bytes. |
Note that the returned value will always be aligned (as defined by MEM_ALIGNMENT).
Definition at line 622 of file mem.c.
References LWIP_DBG_LEVEL_SERIOUS, LWIP_DEBUGF, LWIP_MEM_ALIGN_SIZE, mem_calloc(), MEM_DEBUG, mem::next, mem::prev, sys_mutex_lock(), sys_mutex_unlock(), and mem::used.
Referenced by mem_calloc(), memp_init(), pbuf_alloc(), and slipif_init().
void* mem_trim | ( | void * | rmem, |
mem_size_t | newsize | ||
) |
Shrink memory returned by mem_malloc().
rmem | pointer to memory allocated by mem_malloc the is to be shrinked |
newsize | required size after shrinking (needs to be smaller than or equal to the previous size) |
Definition at line 497 of file mem.c.
References LWIP_DBG_LEVEL_SEVERE, LWIP_DEBUGF, LWIP_MEM_ALIGN_SIZE, MEM_DEBUG, mem::next, mem::prev, SYS_ARCH_DECL_PROTECT, and mem::used.
Referenced by pbuf_realloc().