* @brief This function will init system heap. User can override this API to * complete other works, like heap sanitizer initialization. * * @param begin_addr the beginning address of system page. * * @param end_addr the end address of system page. */
| 840 | * @param end_addr the end address of system page. |
| 841 | */ |
| 842 | rt_weak void rt_system_heap_init(void *begin_addr, void *end_addr) |
| 843 | { |
| 844 | rt_system_heap_init_generic(begin_addr, end_addr); |
| 845 | } |
| 846 | |
| 847 | /** |
| 848 | * @brief Allocate a block of memory with a minimum of 'size' bytes. |
no test coverage detected