Numworks Epsilon  1.4.1
Graphing Calculator Operating System
memconfig.h
Go to the documentation of this file.
1 #ifndef LIBA_MEMCONFIG_H
2 #define LIBA_MEMCONFIG_H
3 
4 /* This structure contains all the configuration data for the mem5 allocator.
5  * Before using mem5, the HeapConfig global variable should be created
6  * and initialized. */
7 
8 typedef struct {
9  int nHeap; /* Size of pHeap[] */
10  void *pHeap; /* Heap storage space */
11  int mnReq; /* Min heap requests sizes */
12  int bMemstat; /* True to enable memory status */
13  void (*xLog)(void*,int,const char*); /* Function for logging */
15 
17 
18 #endif
void * pHeap
Definition: memconfig.h:10
heap_config_t HeapConfig
Definition: malloc.c:13