Merge branch 'bugfix/missing_linux_include' into 'master'

fix(linux_target): added missing include file when CONFIG_HEAP_ABORT_WHEN_ALLOCATION_FAILS

See merge request espressif/esp-idf!29008
This commit is contained in:
Marius Vikhammer
2024-02-10 11:44:51 +08:00

View File

@@ -13,6 +13,10 @@
#include "esp_attr.h"
#include "esp_heap_caps.h"
#ifdef CONFIG_HEAP_ABORT_WHEN_ALLOCATION_FAILS
#include "esp_system.h"
#endif
static esp_alloc_failed_hook_t alloc_failed_callback;
static const uint32_t MAGIC_HEAP_SIZE = UINT32_MAX;