Re: [PATCH v6 0/5] add rte_thread_set_name API for rte_thread_t

2023-01-23 Thread Tyler Retzlaff
On Sun, Jan 22, 2023 at 02:55:18PM +0100, David Marchand wrote: > On Wed, Jan 18, 2023 at 8:54 PM Tyler Retzlaff > wrote: > > > > Replace the rte_thread_setname API which operates on pthread_t with > > rte_thread_set_name that operates on rte_thread_t. > > > > We should try to align tracing output

Re: [PATCH v6 0/5] add rte_thread_set_name API for rte_thread_t

2023-01-22 Thread David Marchand
On Wed, Jan 18, 2023 at 8:54 PM Tyler Retzlaff wrote: > > Replace the rte_thread_setname API which operates on pthread_t with > rte_thread_set_name that operates on rte_thread_t. > > We should try to align tracing output from the EAL for all platforms > but in this case we are retaining an excepti

[PATCH v6 0/5] add rte_thread_set_name API for rte_thread_t

2023-01-18 Thread Tyler Retzlaff
Replace the rte_thread_setname API which operates on pthread_t with rte_thread_set_name that operates on rte_thread_t. We should try to align tracing output from the EAL for all platforms but in this case we are retaining an exception for linux as requested from the community. v6: * clean up co