Dave M / RtosHeapTest

Dependencies:   mbed-rtosMemoryTest mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers heapsize.hpp Source File

heapsize.hpp

00001 #ifndef __HEAPSIZE_HPP__
00002 #define __HEAPSIZE_HPP__
00003 
00004 unsigned long heapSize()
00005 {
00006     char   stackVariable;
00007     void   *heap;
00008     unsigned long result;
00009     heap  = malloc(4);
00010     result  = (uint8_t*)&stackVariable - (uint8_t*)heap;
00011     free(heap);
00012     return result;
00013 }
00014 
00015 #endif