Re: [dpdk-dev] [PATCH v17 00/13] eal: Add EAL API for threading

2021-11-10 Thread Thomas Monjalon
10/11/2021 04:01, Narcisa Ana Maria Vasile: > Narcisa Vasile (13): > eal: add basic threading functions > eal: add thread attributes > eal/windows: translate Windows errors to errno-style errors > eal: implement functions for thread affinity management > eal: implement thread priority man

[dpdk-dev] [PATCH v17 00/13] eal: Add EAL API for threading

2021-11-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