Re: [dpdk-dev] [PATCH v16 0/9] eal: Add EAL API for threading

2021-11-08 Thread Narcisa Ana Maria Vasile
On Tue, Oct 12, 2021 at 06:07:06PM +0200, Thomas Monjalon wrote: > 09/10/2021 09:41, 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 th

Re: [dpdk-dev] [PATCH v16 0/9] eal: Add EAL API for threading

2021-10-12 Thread Thomas Monjalon
09/10/2021 09:41, 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 tha

[dpdk-dev] [PATCH v16 0/9] eal: Add EAL API for threading

2021-10-09 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