1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 06:23:53 +01:00

Merge pull request #15679 from maribu/arm7-malloc

cpu/arm7_common: use malloc_thread_safe
This commit is contained in:
Marian Buschsieweke 2020-12-21 10:00:34 +01:00 committed by GitHub
commit 9a61e27f8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -11,6 +11,7 @@ config CPU_ARCH_ARMV4T
select HAS_ARCH_ARM
select HAS_CPP
select HAS_LIBSTDCPP
select MODULE_MALLOC_THREAD_SAFE if TEST_KCONFIG
config CPU_CORE_ARM7TDMI_S
bool

View File

@ -10,3 +10,6 @@ else
# use the nano-specs of Newlib when available
USEMODULE += newlib_nano
endif
# Make calls to malloc and friends thread-safe
USEMODULE += malloc_thread_safe