Re: [dpdk-dev] [PATCH v2 1/6] eal: add function that sets thread name

2021-06-20 Thread Dmitry Kozlyuk
2021-06-18 18:57 (UTC-0700), Narcisa Ana Maria Vasile: > From: Narcisa Vasile > > Implement function that sets the name of a thread. > On Windows, SetThreadDescription() is used. Use GetProcAddress() > to obtain the address of the function for MinGW compatibility. > > Depends-on: series-17402 ("

[dpdk-dev] [PATCH v2 1/6] eal: add function that sets thread name

2021-06-18 Thread Narcisa Ana Maria Vasile
From: Narcisa Vasile Implement function that sets the name of a thread. On Windows, SetThreadDescription() is used. Use GetProcAddress() to obtain the address of the function for MinGW compatibility. Depends-on: series-17402 ("eal: Add EAL API for threading") Signed-off-by: Narcisa Vasile ---