HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Memory Utilities and safe free for AVR. More...
Go to the source code of this file.
Functions | |
size_t | heaptop (void) |
calloc may be aliased to safecalloc More... | |
size_t | freeRam (void) |
Return AVR Free memory for Malloc. More... | |
void | PrintFree (void) |
Display AVR free memory of each type> More... | |
void * | safecalloc (int size, int elements) |
Safe Alloc - Display Error message if Calloc fails. More... | |
void * | safemalloc (size_t size) |
Safe Malloc - Display Error message if Malloc fails. More... | |
void | safefree (void *p) |
Safe free - Only free a pointer if it is in malloc memory range. More... | |
Variables | |
char * | __brkval |
char * | __malloc_heap_start |
char * | __malloc_heap_end |
size_t | __malloc_margin |
void * | __stack |
Memory Utilities and safe free for AVR.
Definition in file ram.h.
size_t freeRam | ( | ) |
Return AVR Free memory for Malloc.
Definition at line 50 of file ram.c.
Referenced by PrintFree().
size_t heaptop | ( | ) |
calloc may be aliased to safecalloc
free may be aliased to safefree
malloc may be aliased to safecalloc
Return top of heap
Definition at line 27 of file ram.c.
Referenced by freeRam(), PrintFree(), and safefree().
void PrintFree | ( | ) |
Display AVR free memory of each type>
Definition at line 69 of file ram.c.
Referenced by main(), safefree(), and user_task().
void* safecalloc | ( | int | size, |
int | elements | ||
) |
Safe Alloc - Display Error message if Calloc fails.
Definition at line 122 of file ram.c.
Referenced by alloc_device(), copy(), fdevopen(), i2c_task_op_add(), lif_calloc(), MatAlloc(), new_file_descriptor(), queue_new(), set_Config_Defaults(), stralloc(), and strnalloc().
void safefree | ( | void * | p | ) |
Safe free - Only free a pointer if it is in malloc memory range.
[in] | p | pointer to free. |
Definition at line 158 of file ram.c.
Referenced by copy(), fatfs_tests(), ff_memfree(), free_device(), free_file_descriptor(), i2c_task_free_ops(), lif_free(), MatFree(), mkfs(), new_file_descriptor(), printer_close(), queue_del(), and queue_new().
void* safemalloc | ( | size_t | size | ) |
Safe Malloc - Display Error message if Malloc fails.
[in] | size | size |
Definition at line 139 of file ram.c.
Referenced by fatfs_tests(), ff_memalloc(), and mkfs().
char* __brkval |
Referenced by heaptop().
char* __malloc_heap_end |
Referenced by heaptop().
char* __malloc_heap_start |
Referenced by PrintFree(), and safefree().
void* __stack |
Referenced by PrintFree().