45 lines
976 B
C
45 lines
976 B
C
/****************************************************************************************************//**
|
|
* @file trace_heap.h
|
|
*
|
|
* @brief
|
|
*
|
|
* @version v0.1
|
|
* @date 2018-11-05
|
|
*
|
|
* @note
|
|
*******************************************************************************************************/
|
|
#ifndef _TRACE_HEAP_H_
|
|
#define _TRACE_HEAP_H_
|
|
|
|
#include "trace_common.h"
|
|
#include "trace_port_config.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct _BLOCK_SIZE_LIST
|
|
{
|
|
uint32_t number;
|
|
uint32_t size[TRACE_HEAP_MAX_NUMBER_IN_BLOCK_LIST];
|
|
} BLOCK_SIZE_LIST;
|
|
|
|
typedef struct _HEAP_INFO
|
|
{
|
|
uint32_t total_size;
|
|
uint32_t curr_remain_size;
|
|
uint32_t minimum_ever_free_size;
|
|
//BLOCK_SIZE_LIST used_size_list;
|
|
BLOCK_SIZE_LIST free_size_list;
|
|
} HEAP_INFO;
|
|
|
|
extern void trace_heap(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /*_TRACE_HEAP_H_*/
|
|
|
|
/******************* (C) COPYRIGHT 2015 Realtek Semiconductor Corporation *****END OF FILE****/
|