Re: [PATCH] eal: introduce missing rte_thread wrappers

2023-11-29 Thread Stephen Hemminger
On Tue, 28 Nov 2023 09:54:02 +0100 David Vodak wrote: > On 11/27/23 18:27, Tyler Retzlaff wrote: > > > On Mon, Nov 27, 2023 at 10:25:02AM +0100, David Vodak wrote: > >> Function rte_ctrl_thread_create has been replaced by > >> rte_thread_create_control, > >> encouraging Linux users to switch

Re: [PATCH] eal: introduce missing rte_thread wrappers

2023-11-28 Thread David Vodak
On 11/27/23 18:27, Tyler Retzlaff wrote: On Mon, Nov 27, 2023 at 10:25:02AM +0100, David Vodak wrote: Function rte_ctrl_thread_create has been replaced by rte_thread_create_control, encouraging Linux users to switch from the pthread_t API to the rte_thread API. However the rte_thread API does n

Re: [PATCH] eal: introduce missing rte_thread wrappers

2023-11-27 Thread Tyler Retzlaff
On Mon, Nov 27, 2023 at 10:25:02AM +0100, David Vodak wrote: > Function rte_ctrl_thread_create has been replaced by > rte_thread_create_control, > encouraging Linux users to switch from the pthread_t API to the rte_thread > API. > However the rte_thread API does not provide wrappers for all pthre

Re: [PATCH] eal: introduce missing rte_thread wrappers

2023-11-27 Thread Stephen Hemminger
On Mon, 27 Nov 2023 10:25:02 +0100 David Vodak wrote: > Function rte_ctrl_thread_create has been replaced by > rte_thread_create_control, > encouraging Linux users to switch from the pthread_t API to the rte_thread > API. > However the rte_thread API does not provide wrappers for all pthread >

[PATCH] eal: introduce missing rte_thread wrappers

2023-11-27 Thread David Vodak
Function rte_ctrl_thread_create has been replaced by rte_thread_create_control, encouraging Linux users to switch from the pthread_t API to the rte_thread API. However the rte_thread API does not provide wrappers for all pthread functions. This commit introduces equivalent functions for pthread_tim