Skip to content

Commit 828b6f5

Browse files
Cruz Monrreal IICruz Monrreal II
authored andcommitted
Merge branch 'sen_MemTraceDoxyUpdate' of ssh://github.com/SenRamakri/mbed-os into SenRamakri-sen_MemTraceDoxyUpdate
2 parents 9091018 + 9eab32e commit 828b6f5

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

platform/mbed_mem_trace.h

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,14 @@ extern "C" {
2828
#include <stdint.h>
2929
#include <stddef.h>
3030

31-
/* Operation types for tracer */
31+
/**
32+
* enum Memory operation types for tracer
33+
*/
3234
enum {
33-
MBED_MEM_TRACE_MALLOC,
34-
MBED_MEM_TRACE_REALLOC,
35-
MBED_MEM_TRACE_CALLOC,
36-
MBED_MEM_TRACE_FREE
35+
MBED_MEM_TRACE_MALLOC, /**< Identifier for malloc operation */
36+
MBED_MEM_TRACE_REALLOC, /**< Identifier for realloc operation */
37+
MBED_MEM_TRACE_CALLOC, /**< Identifier for calloc operation */
38+
MBED_MEM_TRACE_FREE /**< Identifier for free operation */
3739
};
3840

3941
/**

0 commit comments

Comments
 (0)