We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9091018 + 9eab32e commit 828b6f5Copy full SHA for 828b6f5
platform/mbed_mem_trace.h
@@ -28,12 +28,14 @@ extern "C" {
28
#include <stdint.h>
29
#include <stddef.h>
30
31
-/* Operation types for tracer */
+/**
32
+ * enum Memory operation types for tracer
33
+ */
34
enum {
- MBED_MEM_TRACE_MALLOC,
- MBED_MEM_TRACE_REALLOC,
35
- MBED_MEM_TRACE_CALLOC,
36
- MBED_MEM_TRACE_FREE
+ MBED_MEM_TRACE_MALLOC, /**< Identifier for malloc operation */
+ 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 */
39
};
40
41
/**
0 commit comments