mirror of https://github.com/ARMmbed/mbed-os.git
Adding doxygen comments for mem trace enum
parent
14d247c4c9
commit
2ef7fec409
|
@ -28,12 +28,14 @@ extern "C" {
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
|
||||||
/* Operation types for tracer */
|
/**
|
||||||
|
* enum Memory operation types for tracer
|
||||||
|
*/
|
||||||
enum {
|
enum {
|
||||||
MBED_MEM_TRACE_MALLOC,
|
MBED_MEM_TRACE_MALLOC, /**< Identifier for malloc operation */
|
||||||
MBED_MEM_TRACE_REALLOC,
|
MBED_MEM_TRACE_REALLOC, /**< Identifier for realloc operation */
|
||||||
MBED_MEM_TRACE_CALLOC,
|
MBED_MEM_TRACE_CALLOC, /**< Identifier for calloc operation */
|
||||||
MBED_MEM_TRACE_FREE
|
MBED_MEM_TRACE_FREE /**< Identifier for free operation */
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue