mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-21 06:53:01 +08:00
72 lines
1.8 KiB
C
72 lines
1.8 KiB
C
/**
|
|
* @file lv_gc.h
|
|
*
|
|
*/
|
|
|
|
#ifndef LV_GC_H
|
|
#define LV_GC_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*********************
|
|
* INCLUDES
|
|
*********************/
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include "lv_mem.h"
|
|
#include "lv_ll.h"
|
|
#include "../lv_draw/lv_img_cache.h"
|
|
#include "../lv_draw/lv_draw.h"
|
|
|
|
/*********************
|
|
* DEFINES
|
|
*********************/
|
|
|
|
#define LV_ITERATE_ROOTS(f) \
|
|
f(lv_ll_t, _lv_task_ll) /*Linked list to store the lv_tasks*/ \
|
|
f(lv_ll_t, _lv_disp_ll) /*Linked list of screens*/ \
|
|
f(lv_ll_t, _lv_indev_ll) /*Linked list of screens*/ \
|
|
f(lv_ll_t, _lv_drv_ll) \
|
|
f(lv_ll_t, _lv_file_ll) \
|
|
f(lv_ll_t, _lv_anim_ll) \
|
|
f(lv_ll_t, _lv_group_ll) \
|
|
f(lv_ll_t, _lv_img_defoder_ll) \
|
|
f(lv_img_cache_entry_t*, _lv_img_cache_array) \
|
|
f(void*, _lv_task_act) \
|
|
f(lv_mem_buf_arr_t , _lv_mem_buf) \
|
|
|
|
#define LV_DEFINE_ROOT(root_type, root_name) root_type root_name;
|
|
#define LV_ROOTS LV_ITERATE_ROOTS(LV_DEFINE_ROOT)
|
|
|
|
#if LV_ENABLE_GC == 1
|
|
#if LV_MEM_CUSTOM != 1
|
|
#error "GC requires CUSTOM_MEM"
|
|
#endif /* LV_MEM_CUSTOM */
|
|
#else /* LV_ENABLE_GC */
|
|
#define LV_GC_ROOT(x) x
|
|
#define LV_EXTERN_ROOT(root_type, root_name) extern root_type root_name;
|
|
LV_ITERATE_ROOTS(LV_EXTERN_ROOT)
|
|
#endif /* LV_ENABLE_GC */
|
|
|
|
/**********************
|
|
* TYPEDEFS
|
|
**********************/
|
|
|
|
/**********************
|
|
* GLOBAL PROTOTYPES
|
|
**********************/
|
|
|
|
void lv_gc_clear_roots(void);
|
|
|
|
/**********************
|
|
* MACROS
|
|
**********************/
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif /*LV_GC_H*/
|