takashi kadono / Mbed OS Nucleo_446

Dependencies:   ssd1331

Embed: (wiki syntax)

« Back to documentation index

mbed_stats_heap_t Struct Reference

mbed_stats_heap_t Struct Reference
[stats functions]

struct mbed_stats_heap_t definition More...

#include <mbed_stats.h>

Data Fields

uint32_t current_size
 Bytes allocated currently.
uint32_t max_size
 Max bytes allocated at a given time.
uint32_t total_size
 Cumulative sum of bytes ever allocated.
uint32_t reserved_size
 Current number of bytes allocated for the heap.
uint32_t alloc_cnt
 Current number of allocations.
uint32_t alloc_fail_cnt
 Number of failed allocations.
uint32_t overhead_size
 Overhead added to heap for stats.

Detailed Description

struct mbed_stats_heap_t definition

Definition at line 44 of file mbed_stats.h.


Field Documentation

uint32_t alloc_cnt

Current number of allocations.

Definition at line 49 of file mbed_stats.h.

uint32_t alloc_fail_cnt

Number of failed allocations.

Definition at line 50 of file mbed_stats.h.

uint32_t current_size

Bytes allocated currently.

Definition at line 45 of file mbed_stats.h.

uint32_t max_size

Max bytes allocated at a given time.

Definition at line 46 of file mbed_stats.h.

uint32_t overhead_size

Overhead added to heap for stats.

Definition at line 51 of file mbed_stats.h.

uint32_t reserved_size

Current number of bytes allocated for the heap.

Definition at line 48 of file mbed_stats.h.

uint32_t total_size

Cumulative sum of bytes ever allocated.

Definition at line 47 of file mbed_stats.h.