Re: [dpdk-dev] [PATCH v6 00/10] eal: Add new API for threading

2021-04-16 Thread Narcisa Ana Maria Vasile
On Mon, Apr 12, 2021 at 09:56:14AM +0200, David Marchand wrote: > On Sat, Apr 3, 2021 at 3:39 AM Narcisa Ana Maria Vasile > wrote: > > > > From: Narcisa Vasile > > > > EAL thread API > > > Thanks for taking on this huge work. > > There is no review on this series and I don't have time for it. >

Re: [dpdk-dev] [PATCH v6 00/10] eal: Add new API for threading

2021-04-12 Thread David Marchand
On Sat, Apr 3, 2021 at 3:39 AM Narcisa Ana Maria Vasile wrote: > > From: Narcisa Vasile > > EAL thread API > > **Problem Statement** > DPDK currently uses the pthread interface to create and manage threads. > Windows does not support the POSIX thread programming model, so it currently > relies on

[dpdk-dev] [PATCH v6 00/10] eal: Add new API for threading

2021-04-02 Thread Narcisa Ana Maria Vasile
From: Narcisa Vasile EAL thread API **Problem Statement** DPDK currently uses the pthread interface to create and manage threads. Windows does not support the POSIX thread programming model, so it currently relies on a header file that hides the Windows calls under pthread matched interfaces. Gi