Files
zephyr/scripts/valgrind.supp
Henrik Brix Andersen 36f78b52b7 scripts: valgrind: suppress missing clean-up in nct_new_thread()
Suppress memory leaks detected by valgrind originating from
nct_new_thread(), part of the native_sim CPU thread emulation.

This covers calls to posix_new_thread() as well, since this function simply
calls nct_new_thread (but may be optimized out by the compiler).

Signed-off-by: Henrik Brix Andersen <henrik@brixandersen.dk>
2025-09-03 06:10:49 +02:00

50 lines
793 B
Plaintext

{
getpwuid() libC issue
Memcheck:Leak
match-leak-kinds: reachable
fun:malloc
fun:realloc
fun:load_blacklist
fun:bindresvport
}
{
POSIX arch no thread cleanup
Memcheck:Leak
match-leak-kinds: reachable,possible
...
fun:nct_new_thread
...
fun:arch_new_thread
}
{
POSIX soc no cpu cleanup
Memcheck:Leak
match-leak-kinds: reachable,possible
...
fun:posix_boot_cpu
...
fun:main
}
{
POSIX arch no cpu cleanup
Memcheck:Leak
match-leak-kinds: reachable
...
fun:nct_init
fun:posix_arch_init
}
{
lvgl no cleanup
Memcheck:Leak
match-leak-kinds: possible
fun:malloc
fun:lv_mem_alloc
}
{
lvgl no cleanup 2
Memcheck:Leak
match-leak-kinds: possible
fun:malloc
fun:lvgl_allocate_rendering_buffers
}