Merge branch 'feat/use-singly-linked-hashmap' into 'master'

feat(heap): update hash map to use singly linked list

Closes IDFGH-9846

See merge request espressif/esp-idf!26441
This commit is contained in:
Guillaume Souchere
2023-10-23 13:12:37 +08:00
4 changed files with 61 additions and 24 deletions

View File

@@ -70,6 +70,8 @@ TEST_CASE("heap trace leak check", "[heap-trace]")
so recs[0].address is 0*/
TEST_ASSERT_EQUAL_PTR(recs[0].address, 0x00);
free(b);
heap_trace_stop();
}

View File

@@ -3,3 +3,4 @@ CONFIG_SPIRAM=y
CONFIG_HEAP_TRACING_STANDALONE=y
CONFIG_HEAP_TRACE_HASH_MAP=y
CONFIG_HEAP_TRACE_HASH_MAP_IN_EXT_RAM=y
CONFIG_HEAP_TRACE_HASH_MAP_SIZE=10