Re: [dpdk-dev] [PATCH v7 1/2] eal: move thread affinity functions to new file

2021-01-06 Thread Dmitry Kozlyuk
On Tue, 5 Jan 2021 19:06:34 +0200, Tal Shnaiderman wrote: [...] > diff --git a/lib/librte_eal/include/rte_thread.h > b/lib/librte_eal/include/rte_thread.h > new file mode 100644 > index 00..dbc4b3adf8 > --- /dev/null > +++ b/lib/librte_eal/include/rte_thread.h > @@ -0,0 +1,39 @@ > +/* SPD

[dpdk-dev] [PATCH v7 1/2] eal: move thread affinity functions to new file

2021-01-05 Thread Tal Shnaiderman
Move the definition of the functions rte_thread_set_affinity and rte_thread_get_affinity to new file, rte_thread.h The file will implement generic threading functionality and will only host threading functions which do not reference pthread API. Signed-off-by: Tal Shnaiderman --- lib/librte_eal