Re: [PATCH v3] eal/unix: optimize thread creation with glibc

2024-11-03 Thread fengchengwen
Acked-by: Chengwen Feng On 2024/11/3 19:25, David Marchand wrote: > Setting the cpu affinity of the child thread from the parent thread is > racy when using pthread_setaffinity_np, as the child thread may start > running and initialize before affinity is set. > > On the other hand, setting the c

[PATCH v3] eal/unix: optimize thread creation with glibc

2024-11-03 Thread David Marchand
Setting the cpu affinity of the child thread from the parent thread is racy when using pthread_setaffinity_np, as the child thread may start running and initialize before affinity is set. On the other hand, setting the cpu affinity from the child thread itself may fail, so the parent thread waits