Re: [PATCH] eal: provide trace point register macro for MSVC

2023-11-12 Thread Thomas Monjalon
01/11/2023 23:47, Tyler Retzlaff: > Provide an alternate RTE_TRACE_POINT_REGISTER macro when building with > MSVC that allocates segments for the trace point using MSVC specific > features > > Signed-off-by: Tyler Retzlaff > --- > +#ifdef RTE_TOOLCHAIN_MSVC > +#define RTE_TRACE_POINT_REGISTER(tra

Re: [PATCH] eal: provide trace point register macro for MSVC

2023-11-06 Thread Tyler Retzlaff
On Mon, Nov 06, 2023 at 05:40:12PM +0100, Thomas Monjalon wrote: > 01/11/2023 23:47, Tyler Retzlaff: > > Provide an alternate RTE_TRACE_POINT_REGISTER macro when building with > > MSVC that allocates segments for the trace point using MSVC specific > > features > > Please could you elaborate what

Re: [PATCH] eal: provide trace point register macro for MSVC

2023-11-06 Thread Thomas Monjalon
01/11/2023 23:47, Tyler Retzlaff: > Provide an alternate RTE_TRACE_POINT_REGISTER macro when building with > MSVC that allocates segments for the trace point using MSVC specific > features Please could you elaborate what is the improvement? > +#define RTE_TRACE_POINT_REGISTER(trace, name) \ > +rt

[PATCH] eal: provide trace point register macro for MSVC

2023-11-01 Thread Tyler Retzlaff
Provide an alternate RTE_TRACE_POINT_REGISTER macro when building with MSVC that allocates segments for the trace point using MSVC specific features Signed-off-by: Tyler Retzlaff --- lib/eal/include/rte_trace_point_register.h | 14 ++ 1 file changed, 14 insertions(+) diff --git a/li