Merge pull request #9612 from Frauschi/zephyr_track_memory

Add Zephyr support for TRACK_MEMORY
This commit is contained in:
David Garske
2026-01-08 13:01:18 -08:00
committed by GitHub
2 changed files with 3 additions and 1 deletions

View File

@@ -1105,6 +1105,7 @@ __thumb__
__ti__
__x86_64__
__xtensa__
__ZEPHYR__
byte
configTICK_RATE_HZ
fallthrough

View File

@@ -79,7 +79,8 @@
!defined(WOLFSSL_STATIC_MEMORY)
#define DO_MEM_STATS
#if (defined(__linux__) && !defined(WOLFSSL_KERNEL_MODE)) || defined(__MACH__)
#if (defined(__linux__) && !defined(WOLFSSL_KERNEL_MODE)) || \
defined(__MACH__) || defined(__ZEPHYR__)
#define DO_MEM_LIST
#endif