#include "list.h"
Include dependency graph for mem_internal.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Data Structures | |
struct | _mem_pool_t |
Defines | |
#define | mem_for_each(pool, p) list_for_each_entry(p, &(pool->list), list) |
#define | mem_for_each_safe(pool, p, tmp) list_for_each_entry_safe(p, tmp, &(pool->list), list) |
Variables | |
_mem_pool_t * | _mem_pool |
#define mem_for_each | ( | pool, | |||
p | ) | list_for_each_entry(p, &(pool->list), list) |
#define mem_for_each_safe | ( | pool, | |||
p, | |||||
tmp | ) | list_for_each_entry_safe(p, tmp, &(pool->list), list) |
Definition at line 22 of file mem_alloc.c.
Referenced by mem_alloc(), mem_free(), mem_freeall(), and mem_realloc().