Re: [PATCH] eal: replace lcore direct use of pthread in the EAL

2023-01-18 Thread David Marchand
On Wed, Jan 18, 2023 at 12:25 PM David Marchand wrote: > > On Thu, Dec 8, 2022 at 10:48 PM Tyler Retzlaff > wrote: > > > > * Replace the use of pthread_t in struct lcore_config with the EAL > > rte_thread_t type. > > > > * Replace the direct use of pthread_create(), pthread_self() > > pthread

Re: [PATCH] eal: replace lcore direct use of pthread in the EAL

2023-01-18 Thread David Marchand
On Thu, Dec 8, 2022 at 10:48 PM Tyler Retzlaff wrote: > > * Replace the use of pthread_t in struct lcore_config with the EAL > rte_thread_t type. > > * Replace the direct use of pthread_create(), pthread_self() > pthread_getaffinity_np() and pthread_setaffinity_np(). > > Minor tweaks to return

Re: [PATCH] eal: replace lcore direct use of pthread in the EAL

2023-01-13 Thread Tyler Retzlaff
hey folks, any feedback here? incremental progress untangling pthread out of eal. thanks! On Thu, Dec 08, 2022 at 01:48:16PM -0800, Tyler Retzlaff wrote: > * Replace the use of pthread_t in struct lcore_config with the EAL > rte_thread_t type. > > * Replace the direct use of pthread_create(),

[PATCH] eal: replace lcore direct use of pthread in the EAL

2022-12-08 Thread Tyler Retzlaff
* Replace the use of pthread_t in struct lcore_config with the EAL rte_thread_t type. * Replace the direct use of pthread_create(), pthread_self() pthread_getaffinity_np() and pthread_setaffinity_np(). Minor tweaks to return value comparisons to align with current DPDK style. Signed-off-by: