From 2ef7fec409c5743537b78ccf06bdebf9cabb7f14 Mon Sep 17 00:00:00 2001 From: Senthil Ramakrishnan Date: Thu, 11 Oct 2018 16:58:47 -0500 Subject: [PATCH] Adding doxygen comments for mem trace enum --- platform/mbed_mem_trace.h | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/platform/mbed_mem_trace.h b/platform/mbed_mem_trace.h index 1fe2e99a90..fc1122adfd 100644 --- a/platform/mbed_mem_trace.h +++ b/platform/mbed_mem_trace.h @@ -28,12 +28,14 @@ extern "C" { #include #include -/* 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 */ }; /**