All Data Structures Functions Variables Typedefs Enumerations Enumerator Groups
Memory Management

Detailed Description

Utility functions for determining an application's memory usage.

Function Documentation

size_t heap_bytes_free ( void  )

Calculates the number of bytes of heap memory not currently being used by the application.

Returns
The number of bytes on the heap not currently being used.
size_t heap_bytes_used ( void  )

Calculates the number of bytes of heap memory currently being used by the application.

Returns
The number of bytes on the heap currently being used.