Re: [dpdk-dev] [PATCH] eal: detach interrupt and worker threads

2021-09-28 Thread David Marchand
On Thu, Aug 19, 2021 at 4:41 AM Stephen Hemminger wrote: > > The EAL library does not wait (pthread_join) these threads > so the should be detached so that library can release resources. > This shows up when looking for memory leaks with tools like > valgrind. The FreeBSD interrupt thread can be

[dpdk-dev] [PATCH] eal: detach interrupt and worker threads

2021-08-18 Thread Stephen Hemminger
The EAL library does not wait (pthread_join) these threads so the should be detached so that library can release resources. This shows up when looking for memory leaks with tools like valgrind. Signed-off-by: Stephen Hemminger --- lib/eal/freebsd/eal.c | 3 +++ lib/eal/linux/eal.c