samples/cmsis_rtos_v2/timer_synchronization: Set malloc arena size to zero

This test fails when using picolibc with the default malloc arena
value. Fix this by explicitly setting the malloc arena size to zero, as
when using the minimal C library.

Signed-off-by: Keith Packard <keithp@keithp.com>
This commit is contained in:
Keith Packard 2023-06-15 20:18:47 -07:00 committed by Anas Nashif
parent 5dd87e7db3
commit a476e87073
1 changed files with 1 additions and 0 deletions

View File

@ -11,3 +11,4 @@ CONFIG_POLL=y
CONFIG_SCHED_SCALABLE=y
# The Zephyr CMSIS v2 emulation assumes that ticks are ms, currently
CONFIG_SYS_CLOCK_TICKS_PER_SEC=1000
CONFIG_COMMON_LIBC_MALLOC_ARENA_SIZE=0