Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .wolfssl_known_macro_extras
Original file line number Diff line number Diff line change
Expand Up @@ -1104,6 +1104,7 @@ __thumb__
__ti__
__x86_64__
__xtensa__
__ZEPHYR__
byte
configTICK_RATE_HZ
fallthrough
Expand Down
3 changes: 2 additions & 1 deletion wolfssl/wolfcrypt/mem_track.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down