Re: [dpdk-dev] [PATCH v9 06/10] eal: add thread lifetime management

2021-06-18 Thread Dmitry Kozlyuk
2021-06-18 14:41 (UTC-0700), Narcisa Ana Maria Vasile: > On Wed, Jun 09, 2021 at 02:04:09AM +0300, Dmitry Kozlyuk wrote: > > 2021-06-04 16:44 (UTC-0700), Narcisa Ana Maria Vasile: [...] > > > + > > > + HANDLE thread_handle = NULL; > > > + GROUP_AFFINITY thread_affinity; > > > + struct thread_routin

Re: [dpdk-dev] [PATCH v9 06/10] eal: add thread lifetime management

2021-06-18 Thread Narcisa Ana Maria Vasile
On Wed, Jun 09, 2021 at 02:04:09AM +0300, Dmitry Kozlyuk wrote: > 2021-06-04 16:44 (UTC-0700), Narcisa Ana Maria Vasile: > [...] > > diff --git a/lib/eal/include/rte_thread.h b/lib/eal/include/rte_thread.h > > index 5c54cd9d67..1d481b9ad5 100644 > > --- a/lib/eal/include/rte_thread.h > > +++ b/lib/

Re: [dpdk-dev] [PATCH v9 06/10] eal: add thread lifetime management

2021-06-08 Thread Dmitry Kozlyuk
2021-06-04 16:44 (UTC-0700), Narcisa Ana Maria Vasile: [...] > diff --git a/lib/eal/include/rte_thread.h b/lib/eal/include/rte_thread.h > index 5c54cd9d67..1d481b9ad5 100644 > --- a/lib/eal/include/rte_thread.h > +++ b/lib/eal/include/rte_thread.h > @@ -208,6 +208,73 @@ __rte_experimental > int rt

[dpdk-dev] [PATCH v9 06/10] eal: add thread lifetime management

2021-06-04 Thread Narcisa Ana Maria Vasile
From: Narcisa Vasile Add function for thread creation, join, canceling, detaching. The *rte_thread_create()* function can optionally receive an rte_thread_attr_t object that will cause the thread to be created with the affinity and priority described by the attributes object. If no rte_thread_at