File tree Expand file tree Collapse file tree 1 file changed +13
-4
lines changed Expand file tree Collapse file tree 1 file changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,9 @@ typedef struct {
35
35
} mbed_stats_heap_t ;
36
36
37
37
/**
38
- * Fill the passed in structure with heap stats.
38
+ * Fill the passed in heap stat structure with heap stats.
39
+ *
40
+ * @param stats A pointer to the mbed_stats_heap_t structure to fill
39
41
*/
40
42
void mbed_stats_heap_get (mbed_stats_heap_t * stats );
41
43
@@ -47,13 +49,20 @@ typedef struct {
47
49
} mbed_stats_stack_t ;
48
50
49
51
/**
50
- * Fill the passed in structure with stack stats.
52
+ * Fill the passed in structure with stack stats.
53
+ *
54
+ * @param stats A pointer to the mbed_stats_stack_t structure to fill
51
55
*/
52
56
void mbed_stats_stack_get (mbed_stats_stack_t * stats );
53
57
54
58
/**
55
- * Fill the passed array of stat structures with the stack stats
56
- * for each available stack.
59
+ * Fill the passed array of stat structures with the stack stats
60
+ * for each available stack.
61
+ *
62
+ * @param stats A pointer to an array of mbed_stats_stack_t structures to fill
63
+ * @param count The number of mbed_stats_stack_t structures in the provided array
64
+ * @return The number of mbed_stats_stack_t structures that have been filled,
65
+ * this is equal to the number of stacks on the system.
57
66
*/
58
67
size_t mbed_stats_stack_get_each (mbed_stats_stack_t * stats , size_t count );
59
68
You can’t perform that action at this time.
0 commit comments