Merge branch 'sen_MemTraceDoxyUpdate' of ssh://github.com/SenRamakri/mbed-os into SenRamakri-sen_MemTraceDoxyUpdate

pull/8410/head
Cruz Monrreal II 2018-10-12 12:07:21 -05:00
commit 828b6f506a
1 changed files with 7 additions and 5 deletions

View File

@ -28,12 +28,14 @@ extern "C" {
#include <stdint.h>
#include <stddef.h>
/* Operation types for tracer */
/**
* enum Memory operation types for tracer
*/
enum {
MBED_MEM_TRACE_MALLOC,
MBED_MEM_TRACE_REALLOC,
MBED_MEM_TRACE_CALLOC,
MBED_MEM_TRACE_FREE
MBED_MEM_TRACE_MALLOC, /**< Identifier for malloc operation */
MBED_MEM_TRACE_REALLOC, /**< Identifier for realloc operation */
MBED_MEM_TRACE_CALLOC, /**< Identifier for calloc operation */
MBED_MEM_TRACE_FREE /**< Identifier for free operation */
};
/**