Re: [dpdk-dev] [PATCH v16 8/9] eal: implement functions for thread barrier management

2021-11-09 Thread Narcisa Ana Maria Vasile
On Mon, Nov 08, 2021 at 06:07:34PM -0800, Narcisa Ana Maria Vasile wrote: > On Tue, Oct 12, 2021 at 06:32:09PM +0200, Thomas Monjalon wrote: > > 09/10/2021 09:41, Narcisa Ana Maria Vasile: > > > From: Narcisa Vasile > > > > > > Add functions for barrier init, destroy, wait. > > > > > > A portabl

Re: [dpdk-dev] [PATCH v16 8/9] eal: implement functions for thread barrier management

2021-11-08 Thread Narcisa Ana Maria Vasile
On Tue, Oct 12, 2021 at 06:32:09PM +0200, Thomas Monjalon wrote: > 09/10/2021 09:41, Narcisa Ana Maria Vasile: > > From: Narcisa Vasile > > > > Add functions for barrier init, destroy, wait. > > > > A portable type is used to represent a barrier identifier. > > The rte_thread_barrier_wait() func

Re: [dpdk-dev] [PATCH v16 8/9] eal: implement functions for thread barrier management

2021-10-12 Thread Thomas Monjalon
09/10/2021 09:41, Narcisa Ana Maria Vasile: > From: Narcisa Vasile > > Add functions for barrier init, destroy, wait. > > A portable type is used to represent a barrier identifier. > The rte_thread_barrier_wait() function returns the same value > on all platforms. > > Signed-off-by: Narcisa Vas

[dpdk-dev] [PATCH v16 8/9] eal: implement functions for thread barrier management

2021-10-09 Thread Narcisa Ana Maria Vasile
From: Narcisa Vasile Add functions for barrier init, destroy, wait. A portable type is used to represent a barrier identifier. The rte_thread_barrier_wait() function returns the same value on all platforms. Signed-off-by: Narcisa Vasile --- lib/eal/common/rte_thread.c | 61 ++